| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235 |
- [Licensing::Module] Trying to connect to existing licensing client channel...
- Built from '6000.3/staging' branch; Version is '6000.3.11f1 (3000ef702840) revision 3145967'; Using compiler version '194234433'; Build Type 'Release'
- OS: 'Windows 11 (10.0.26200) Core' Language: 'en' Physical Memory: 31863 MB
- [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam" at "2026-05-14T10:10:04.2395579Z"
- BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1
- System architecture: x64
- Process architecture: x64
- Date: 2026-05-14T10:10:04Z
- COMMAND LINE ARGUMENTS:
- C:\Program Files\Unity\Hub\Editor\6000.3.11f1\Editor\Unity.exe
- -adb2
- -batchMode
- -noUpm
- -name
- AssetImportWorker2
- -projectPath
- F:/UnityProjects/GAMEN4_AR_Unity
- -logFile
- Logs/AssetImportWorker2.log
- -srvPort
- 64857
- -job-worker-count
- 7
- -background-job-worker-count
- 8
- -gc-helper-count
- 1
- -name
- AssetImport
- Successfully changed project path to: F:/UnityProjects/GAMEN4_AR_Unity
- F:/UnityProjects/GAMEN4_AR_Unity
- [UnityMemory] Configuration Parameters - Can be set up in boot.config
- "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
- "memorysetup-temp-allocator-size-audio-worker=65536"
- "memorysetup-temp-allocator-size-gfx=262144"
- "memorysetup-allocator-temp-initial-block-size-main=262144"
- "memorysetup-allocator-temp-initial-block-size-worker=262144"
- "memorysetup-temp-allocator-size-background-worker=32768"
- "memorysetup-temp-allocator-size-job-worker=262144"
- "memorysetup-temp-allocator-size-preload-manager=33554432"
- "memorysetup-temp-allocator-size-gi-baking-worker=262144"
- "memorysetup-temp-allocator-size-gi-baking-worker=262144"
- "memorysetup-temp-allocator-size-gi-baking-worker=262144"
- "memorysetup-temp-allocator-size-gi-baking-worker=262144"
- "memorysetup-temp-allocator-size-gi-baking-worker=262144"
- "memorysetup-bucket-allocator-granularity=16"
- "memorysetup-bucket-allocator-bucket-count=8"
- "memorysetup-bucket-allocator-block-size=33554432"
- "memorysetup-bucket-allocator-block-count=8"
- "memorysetup-main-allocator-block-size=16777216"
- "memorysetup-thread-allocator-block-size=16777216"
- "memorysetup-gfx-main-allocator-block-size=16777216"
- "memorysetup-gfx-thread-allocator-block-size=16777216"
- "memorysetup-cache-allocator-block-size=4194304"
- "memorysetup-typetree-allocator-block-size=2097152"
- "memorysetup-profiler-bucket-allocator-granularity=16"
- "memorysetup-profiler-bucket-allocator-bucket-count=8"
- "memorysetup-profiler-bucket-allocator-block-size=33554432"
- "memorysetup-profiler-bucket-allocator-block-count=8"
- "memorysetup-profiler-allocator-block-size=16777216"
- "memorysetup-profiler-editor-allocator-block-size=1048576"
- "memorysetup-temp-allocator-size-main=16777216"
- "memorysetup-job-temp-allocator-block-size=2097152"
- "memorysetup-job-temp-allocator-block-size-background=1048576"
- "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
- "memorysetup-temp-allocator-size-cloud-worker=32768"
- Player connection [39584] Target information:
- Player connection [39584] * "[IP] 192.168.40.240 [Port] 0 [Flags] 2 [Guid] 2320320798 [EditorId] 2320320798 [Version] 1048832 [Id] WindowsEditor(7,KiwiHomePC) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor"
- Player connection [39584] Host joined multi-casting on [225.0.0.222:54997]...
- Player connection [39584] Host joined alternative multi-casting on [225.0.0.222:34997]...
- JobSystem: Creating JobQueue using job-worker-count value 7
- Input System module state changed to: Initialized.
- [Physics::Module] Initialized fallback backend.
- [Physics::Module] Id: 0xdecafbad
- Library Redirect Path: Library/
- [Physics::Module] Selected backend.
- [Physics::Module] Name: PhysX
- [Physics::Module] Id: 0xf2b8ea05
- [Physics::Module] SDK Version: 4.1.2
- [Physics::Module] Integration Version: 1.0.0
- [Physics::Module] Threading Mode: Multi-Threaded
- Refreshing native plugins compatible for Editor in 2.66 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Initialize engine version: 6000.3.11f1 (3000ef702840)
- [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/Resources/UnitySubsystems
- [Subsystems] Discovering subsystems at path F:/UnityProjects/GAMEN4_AR_Unity/Assets
- GfxDevice: creating device client; kGfxThreadingModeNonThreaded
- Direct3D:
- Version: Direct3D 11.0 [level 11.1]
- Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786)
- Vendor: NVIDIA
- VRAM: 12010 MB
- Driver: 32.0.15.9636
- Initialize mono
- Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/Managed'
- Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
- Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/MonoBleedingEdge/etc'
- Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56868
- Begin MonoManager ReloadAssembly
- Registering precompiled unity dll's ...
- Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
- [Licensing::Module] Licensing is not yet initialized.
- [Licensing::Client] Error: HandshakeResponse reported an error:
- ResponseCode: 505
- ResponseStatus: Unsupported protocol version '1.18.0'.
- [Licensing::Module] Error: Failed to handshake to channel: "LicenseClient-Adam"
- [Licensing::IpcConnector] LicenseClient-Adam channel disconnected successfully.
- [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam-6000.3.11" at "2026-05-14T10:10:05.556049Z"
- [Licensing::Client] Handshaking with LicensingClient:
- Version: 1.18.0+23225a6
- Session Id: aa71d785ff544109935c9ca9f69e0d2a
- Correlation Id: b42e6e9f2ff0eb3e9e3858afe4798231
- External correlation Id: 1128395646808945948
- Machine Id: M36UPhR5wcvpby2zAKm+eN+byl4=
- [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-Adam-6000.3.11" (connect: 0.00s, validation: 0.00s, handshake: 0.14s)
- [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam-6000.3.11-notifications" at "2026-05-14T10:10:05.7010843Z"
- [Licensing::Module] Licensing Background thread has ended after 1.46s
- [Licensing::Module] Licensing is initialized (took 0.41s).
- [Licensing::Client] Successfully resolved entitlement details
- [Licensing::Module] License group:
- Id: 9071008393419-UnityPersXXXX
- Product: Unity Personal
- Type: Assigned
- Expiration: Unlimited
- Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
- Registered in 0.417337 seconds.
- - Loaded All Assemblies, in 0.851 seconds
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- Package Manager log level set to [2]
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- - Finished resetting the current domain, in 0.378 seconds
- Domain Reload Profiling: 1227ms
- BeginReloadAssembly (145ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (0ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (1ms)
- RebuildCommonClasses (43ms)
- RebuildNativeTypeToScriptingClass (16ms)
- initialDomainReloadingComplete (464ms)
- LoadAllAssembliesAndSetupDomain (179ms)
- LoadAssemblies (141ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (176ms)
- TypeCache.Refresh (174ms)
- TypeCache.ScanAssembly (162ms)
- BuildScriptInfoCaches (0ms)
- ResolveRequiredComponents (0ms)
- FinalizeReload (379ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (330ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (47ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (71ms)
- ProcessInitializeOnLoadAttributes (128ms)
- ProcessInitializeOnLoadMethodAttributes (81ms)
- AfterProcessingInitializeOnLoad (0ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (0ms)
- ========================================================================
- Worker process is ready to serve import requests
- Import Worker Mode flag is 0x00
- Begin MonoManager ReloadAssembly
- [Licensing::Client] Successfully resolved entitlement details
- - Loaded All Assemblies, in 0.806 seconds
- Refreshing native plugins compatible for Editor in 1.79 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.714 seconds
- Domain Reload Profiling: 1514ms
- BeginReloadAssembly (190ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (35ms)
- RebuildCommonClasses (46ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (46ms)
- LoadAllAssembliesAndSetupDomain (502ms)
- LoadAssemblies (325ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (281ms)
- TypeCache.Refresh (196ms)
- TypeCache.ScanAssembly (177ms)
- BuildScriptInfoCaches (68ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (714ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (519ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (9ms)
- SetLoadedEditorAssemblies (4ms)
- BeforeProcessingInitializeOnLoad (148ms)
- ProcessInitializeOnLoadAttributes (272ms)
- ProcessInitializeOnLoadMethodAttributes (76ms)
- AfterProcessingInitializeOnLoad (10ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (6ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds
- Refreshing native plugins compatible for Editor in 1.92 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6007 unused Assets / (10.6 MB). Loaded Objects now: 6830.
- Memory consumption went from 161.6 MB to 151.1 MB.
- Total: 14.046000 ms (FindLiveObjects: 1.034800 ms CreateObjectMapping: 1.081500 ms MarkObjects: 7.090600 ms DeleteObjects: 4.838000 ms)
- ========================================================================
- Received Import Request.
- Time since last request: 72205.237518 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF.shader
- artifactKey: Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF.shader using Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '60577537c0675c103a2ae53fac0defbf') in 0.110192 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/Settings/SampleSceneProfile.asset
- artifactKey: Guid(a6560a915ef98420e9faacc1c7438823) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Settings/SampleSceneProfile.asset using Guid(a6560a915ef98420e9faacc1c7438823) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4e107a1e500cee29cc614832f7f83448') in 0.0171362 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
- ========================================================================
- Received Import Request.
- Time since last request: 0.000018 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader
- artifactKey: Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader using Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'c37cb72b08e7f790011733e3dffdff03') in 0.0086676 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000025 seconds.
- path: Assets/Settings/Project Configuration/SampleScene.scenetemplate
- artifactKey: Guid(cd3fa84c57338574abb086f0c361d881) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Settings/Project Configuration/SampleScene.scenetemplate using Guid(cd3fa84c57338574abb086f0c361d881) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'ab4416f6e1d9e001ad29b26e925bd1b8') in 0.0610851 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 76
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/MobileARTemplateAssets/UI/Fonts/Inter-Regular_SDF_Underlay.mat
- artifactKey: Guid(9df90d896a1f14b39a85af1c83541d54) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Fonts/Inter-Regular_SDF_Underlay.mat using Guid(9df90d896a1f14b39a85af1c83541d54) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '6a8807b7ad0a01361261af1e73ed2625') in 0.0226783 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/MobileARTemplateAssets/UI/Animation/Prompt_TapToPlace.controller
- artifactKey: Guid(fcdde18e252494d829bad47b6c18d058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Animation/Prompt_TapToPlace.controller using Guid(fcdde18e252494d829bad47b6c18d058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '51b52d09c3a94ead763951430148494d') in 0.0110758 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
- ========================================================================
- Received Import Request.
- Time since last request: 0.000018 seconds.
- path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_InputHints.prefab
- artifactKey: Guid(7cb8fbdf1642648388b0fc742b553264) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_InputHints.prefab using Guid(7cb8fbdf1642648388b0fc742b553264) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2f373bda055a8003ccbedafdc3db43ed') in 0.1300307 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 139
- ========================================================================
- Received Import Request.
- Time since last request: 0.000033 seconds.
- path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_RotateObject.prefab
- artifactKey: Guid(d6df0df54b7dd4cd9ae7fa880a63e827) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_RotateObject.prefab using Guid(d6df0df54b7dd4cd9ae7fa880a63e827) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '16c7048ad98ba601ab6bc42f728359ef') in 0.0182446 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 61
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph
- artifactKey: Guid(a3d800b099a06e0478fb790c5e79057a) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph using Guid(a3d800b099a06e0478fb790c5e79057a) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '62374c8c93d865c22d0bb80c1b8a8c6a') in 0.0226177 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader
- artifactKey: Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader using Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '60b2fce73ccd589c82ea061bef107a7e') in 0.0100205 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Settings/URP-Performant.asset
- artifactKey: Guid(d0e2fc18fe036412f8223b3b3d9ad574) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Settings/URP-Performant.asset using Guid(d0e2fc18fe036412f8223b3b3d9ad574) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '09e7b7595720af68b733024aa50dea02') in 0.0455163 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000018 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube_Lift_Mask.png
- artifactKey: Guid(7d243d9badfce4aa5867d7ce26d0c7c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube_Lift_Mask.png using Guid(7d243d9badfce4aa5867d7ce26d0c7c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'ef46e858ab7b71da3850a3a600dc0938') in 0.0495911 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000027 seconds.
- path: Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc
- artifactKey: Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc using Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'feab35db0c633f652ce36403efb7042a') in 0.0094953 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-ScaleAxisGizmo.png
- artifactKey: Guid(bd0fe3abc36404b2dbebd9ae74eb79c7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-ScaleAxisGizmo.png using Guid(bd0fe3abc36404b2dbebd9ae74eb79c7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '3feb09d828aa45e7659e7c37c8d5dfbd') in 0.0146194 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/XR/Resources/ARCoreRuntimeSettings.asset
- artifactKey: Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/XR/Resources/ARCoreRuntimeSettings.asset using Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '80ae1392b0b37951722f619f273d9def') in 0.0136819 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader
- artifactKey: Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader using Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4574b4eeece4e29f0452daf27478b63e') in 0.0093779 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube.png
- artifactKey: Guid(f9e6d8a7f941049e3a17d025c44a07e5) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube.png using Guid(f9e6d8a7f941049e3a17d025c44a07e5) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2962df2749c1960fb0a2f49376bcc305') in 0.0111875 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000018 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph
- artifactKey: Guid(124c112a6e8f1a54e8b0870e881b56d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph using Guid(124c112a6e8f1a54e8b0870e881b56d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'f10d56dba09c8daccc5151c239fade28') in 0.0195262 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_MoveObject.prefab
- artifactKey: Guid(dae86721c71ee42018bbec0181a4e52e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_MoveObject.prefab using Guid(dae86721c71ee42018bbec0181a4e52e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '8681775d26f2ef48bfe276e3e4415c8c') in 0.0153896 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 51
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/Settings/Project Configuration/SceneTemplate_RotateCube.cs
- artifactKey: Guid(6f17310979bb8bc409d7bc10ebea601c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Settings/Project Configuration/SceneTemplate_RotateCube.cs using Guid(6f17310979bb8bc409d7bc10ebea601c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a6ad2c6ae663abd56d631130835ba8ca') in 0.0077363 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000014 seconds.
- path: Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
- artifactKey: Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf using Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'ffed7bf9455ae5dfbc8afe5abc9c7253') in 0.0069897 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/XR/Resources/XRSimulationRuntimeSettings.asset
- artifactKey: Guid(e9b2504bcc65542929413802f7fe8283) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/XR/Resources/XRSimulationRuntimeSettings.asset using Guid(e9b2504bcc65542929413802f7fe8283) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '19daa24ebed96fdf48fa8c39490a7b9e') in 0.0138581 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-RotateAxisGizmo.png
- artifactKey: Guid(5b761a716f9a14b1f96d86db91468013) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-RotateAxisGizmo.png using Guid(5b761a716f9a14b1f96d86db91468013) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'de97f8d9aee0edf5479c7ed6afb4f993') in 0.0114149 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader
- artifactKey: Guid(0178fcb869bafef4690d177d31d17db8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader using Guid(0178fcb869bafef4690d177d31d17db8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'cd673404b0b32640b172397d540d0dc2') in 0.0086609 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000024 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-MoveAxisGizmos.png
- artifactKey: Guid(51013162d2e1a4a09ae16e48154ceb5f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-MoveAxisGizmos.png using Guid(51013162d2e1a4a09ae16e48154ceb5f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '666398f5edb54a6b541cda1801f173a6') in 0.0119817 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/MobileARTemplateAssets/Prefabs/PyramidVariant.prefab
- artifactKey: Guid(3cbfcd4079a5031478389d5ab3c8c311) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/Prefabs/PyramidVariant.prefab using Guid(3cbfcd4079a5031478389d5ab3c8c311) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2a0812d027b3f4cd434c20e6359de2fd') in 0.0526107 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 49
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Materials/Interactable.mat
- artifactKey: Guid(76618f7490c40334fa7b685859587d2e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Materials/Interactable.mat using Guid(76618f7490c40334fa7b685859587d2e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'eb8c6f642e5165a33f5143a4cb71d537') in 0.1810397 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 8
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Cylinder.fbx
- artifactKey: Guid(9e1dc1c14313460d872de39e35129b39) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Cylinder.fbx using Guid(9e1dc1c14313460d872de39e35129b39) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '61ead9f067aa63a7384282ef0a3fc6b8') in 0.0363858 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
- ========================================================================
- Received Import Request.
- Time since last request: 0.000023 seconds.
- path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
- artifactKey: Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat using Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '7a93c3c76f9002d7f94030dcadf7f968') in 0.0158622 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Pinch_Pointer_LOD0.fbx
- artifactKey: Guid(e053b8fbc416ba349b4a58a26410bba2) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Pinch_Pointer_LOD0.fbx using Guid(e053b8fbc416ba349b4a58a26410bba2) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4de3235286b2503d6c88fc4a6106c59a') in 0.0147392 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 6
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoScene.unity
- artifactKey: Guid(da4db6c21a88243878fecfe160c1be3b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoScene.unity using Guid(da4db6c21a88243878fecfe160c1be3b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '81bd9e92249c76f1151c4f3cf9f11de8') in 0.0112889 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/Prefabs/AR Feathered Plane.prefab
- artifactKey: Guid(a6b7ca1d53c75490595d1f0d5f43be38) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/Prefabs/AR Feathered Plane.prefab using Guid(a6b7ca1d53c75490595d1f0d5f43be38) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'acff11e5f6740bb564a31ce71f0c3683') in 0.0167125 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 11
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Gesture_TouchTwoFinger.png
- artifactKey: Guid(bef7dbc4d02bf479fbc01527842a7201) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-Gesture_TouchTwoFinger.png using Guid(bef7dbc4d02bf479fbc01527842a7201) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4189fd9ed6b7cca15a95614ef95bea71') in 0.0108294 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000018 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx
- artifactKey: Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx using Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4ab26b49d11c7630eed018575e7a1dc6') in 0.0136216 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
- ========================================================================
- Received Import Request.
- Time since last request: 0.000029 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Shaders/Unlit_Fresnel.shadergraph
- artifactKey: Guid(e19b5bb6cb8e91e43b1b5d81a069296f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Shaders/Unlit_Fresnel.shadergraph using Guid(e19b5bb6cb8e91e43b1b5d81a069296f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b87f9407234314f948712c5193e7d20d') in 0.1519715 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 6
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ObjectSpawner.cs
- artifactKey: Guid(956dd6cf70eaca449a45b6a95b96c8c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ObjectSpawner.cs using Guid(956dd6cf70eaca449a45b6a95b96c8c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '985130f4f533ae3f02f248eb47008ccd') in 0.0079996 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Permissions Manager.prefab
- artifactKey: Guid(faf53399145e13c4b992b14c97b5f4c0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Permissions Manager.prefab using Guid(faf53399145e13c4b992b14c97b5f4c0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'e07735cb19c206208f6b7cdc1bbb4753') in 0.0101194 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 5
- ========================================================================
- Received Import Request.
- Time since last request: 0.000026 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Presets/XRI Default Right Controller InputActionManager.preset
- artifactKey: Guid(55f7614a1d331d14bb631965514937d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Presets/XRI Default Right Controller InputActionManager.preset using Guid(55f7614a1d331d14bb631965514937d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a833369e03540447243b57f618f0068a') in 0.0202289 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 8
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_Sprite.shader
- artifactKey: Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_Sprite.shader using Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'dc5db45e103ea01dec6a32d908533b6d') in 0.0077571 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/MobileARTemplateAssets/Materials/Concrete_Normal.tif
- artifactKey: Guid(ac1389e5bfca4384da60ced0c25f4a68) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/Materials/Concrete_Normal.tif using Guid(ac1389e5bfca4384da60ced0c25f4a68) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '5c2cad0b89902dc118da0533a0e9ec8c') in 0.0109492 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Create.png
- artifactKey: Guid(7ec65d81ee53b4a76babde6fa254b6e1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Create.png using Guid(7ec65d81ee53b4a76babde6fa254b6e1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '63b8e66ef2e1ac8e8c1ea2596539409d') in 0.0116478 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Materials/MaterialPipelineHandler.asset
- artifactKey: Guid(1ba0d5cbd551dbf428dc68d0d58ae939) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Materials/MaterialPipelineHandler.asset using Guid(1ba0d5cbd551dbf428dc68d0d58ae939) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '39ffc44f36ccfa4d16c3c4c50574c73d') in 0.0087945 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/AffordanceThemes/InteractionColor.asset
- artifactKey: Guid(3ec238cb3e80e274c844d7b56f585392) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/AffordanceThemes/InteractionColor.asset using Guid(3ec238cb3e80e274c844d7b56f585392) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'ac47cd0ac78ad156835c59ebcac2a58a') in 0.0101132 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000022 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Prefabs/Debug Cube.prefab
- artifactKey: Guid(cec25213e5ba74da1ae7d3e2036e000d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Prefabs/Debug Cube.prefab using Guid(cec25213e5ba74da1ae7d3e2036e000d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'c707c06a50f556398544e947b7a74e12') in 0.0126619 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 42
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Object - Wedge.png
- artifactKey: Guid(27d12ab07620b42e1b6f840310624d58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Object - Wedge.png using Guid(27d12ab07620b42e1b6f840310624d58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2754d2a08d29b431f9c65c0fb289136a') in 0.0125299 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cylinder.fbx
- artifactKey: Guid(303858b05cdc2474d9cc45c585ccc058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cylinder.fbx using Guid(303858b05cdc2474d9cc45c585ccc058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'c014fb4e90c4a9f844b02c808fe4440c') in 0.0115904 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Textures/ConcreteNormal.tif
- artifactKey: Guid(1dce72fffd0af44ad8e9cdd61d9fc604) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Textures/ConcreteNormal.tif using Guid(1dce72fffd0af44ad8e9cdd61d9fc604) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '02a306070e5c001a51075fa322963adf') in 0.0108409 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Arch.fbx
- artifactKey: Guid(1b1d3fffb2c30434b903b78194cc0997) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Arch.fbx using Guid(1b1d3fffb2c30434b903b78194cc0997) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '8aaf6621484383da0c9ad8d3b500ce60') in 0.0119489 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
- ========================================================================
- Received Import Request.
- Time since last request: 0.000014 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Scripts/ARSampleMenuManager.cs
- artifactKey: Guid(e06e5c0df3a5b4f53b5d4250256f14d1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Scripts/ARSampleMenuManager.cs using Guid(e06e5c0df3a5b4f53b5d4250256f14d1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'afbd76bafb1b98675cbc6ef573849c85') in 0.0066154 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000023 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader
- artifactKey: Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader using Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '87944eed4791b4c94e84162930530997') in 0.0087465 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cube_Debug.fbx
- artifactKey: Guid(f396e3429a4864fc2ad497cb3ce5fe2c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cube_Debug.fbx using Guid(f396e3429a4864fc2ad497cb3ce5fe2c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b65e2a3ad54fac2c53c0995660fed9fc') in 0.016046 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 25
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/MobileARTemplateAssets/UI/Animation/Prompt_MoveObject.controller
- artifactKey: Guid(c6856fc029df4474a8aa6f22b6c8613f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Animation/Prompt_MoveObject.controller using Guid(c6856fc029df4474a8aa6f22b6c8613f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '9332d6ae17f55e28652744e378076ab1') in 0.0088064 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
- ========================================================================
- Received Import Request.
- Time since last request: 0.000014 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Poke Interactions Sample.prefab
- artifactKey: Guid(88246f8e9c3765d49be8da34eca3c630) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Poke Interactions Sample.prefab using Guid(88246f8e9c3765d49be8da34eca3c630) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'cf0b614870bf4971c5fbcbc4af3ccb70') in 0.0248975 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 108
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Round Radius 4 Outline.png
- artifactKey: Guid(b7bad1260586fa746a0b67e930892936) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Round Radius 4 Outline.png using Guid(b7bad1260586fa746a0b67e930892936) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b34de5d8a81cdb1123f2214b6f4a444b') in 0.0109282 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx
- artifactKey: Guid(46c1c422ff6897f49a404b012dc924d3) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx using Guid(46c1c422ff6897f49a404b012dc924d3) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '9a8f0c8ce189cc2323b42900a8a23ecd') in 0.0126005 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
- ========================================================================
- Received Import Request.
- Time since last request: 0.000020 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Settings/TeleportDestinationSettings.asset
- artifactKey: Guid(8d66c9762e1587643a1164368c8a2c58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Settings/TeleportDestinationSettings.asset using Guid(8d66c9762e1587643a1164368c8a2c58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a8a255d353d283fade9a0da2890d3cd2') in 0.0115882 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/Climb Sample.prefab
- artifactKey: Guid(2ea572d587ee60f44bd5baa3bc2d6503) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/Climb Sample.prefab using Guid(2ea572d587ee60f44bd5baa3bc2d6503) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'e039f68e5cd9605a5f7183fdb1c45440') in 0.0267133 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 792
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Teleport Interactor.prefab
- artifactKey: Guid(c1800acf6366418a9b5f610249000331) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Teleport Interactor.prefab using Guid(c1800acf6366418a9b5f610249000331) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2655807f8905c5830f8862cfd8e3e688') in 0.1965734 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 38
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/ClimbTeleportReticle.prefab
- artifactKey: Guid(6eb816e9b7ce30f4cadff3d4ad7ad10c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/ClimbTeleportReticle.prefab using Guid(6eb816e9b7ce30f4cadff3d4ad7ad10c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '9807fcd9e9809a2cfe14633e2ddba25b') in 0.0126737 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 40
- ========================================================================
- Received Import Request.
- Time since last request: 0.000026 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Scroll UI Sample.prefab
- artifactKey: Guid(0cbc0856f0fb8d84a81be5dea463c369) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Scroll UI Sample.prefab using Guid(0cbc0856f0fb8d84a81be5dea463c369) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '57348ded6c70c385c758f8352a7eb0cc') in 0.0248039 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 72
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/MinMaxSlider.prefab
- artifactKey: Guid(657321a07c3561043af55547ec4b0ed7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/MinMaxSlider.prefab using Guid(657321a07c3561043af55547ec4b0ed7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '05c7851ede7008df4a6f3d2c7bd773b7') in 0.0245367 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 26
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Icon Toggle.prefab
- artifactKey: Guid(541ed11e270c6994ca5910042c7e04da) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Icon Toggle.prefab using Guid(541ed11e270c6994ca5910042c7e04da) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '9fa38a10afa2695bd10b26d6415c386f') in 0.0222041 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 21
- ========================================================================
- Received Import Request.
- Time since last request: 0.000014 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Forward.png
- artifactKey: Guid(f8ecc54972abacc46a93f671b0602139) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Forward.png using Guid(f8ecc54972abacc46a93f671b0602139) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'f920091b5ff834e79834ccff261b3b93') in 0.0105111 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000015 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Ray Interactor.prefab
- artifactKey: Guid(ad818c36731146e994540a1896ad8f24) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Ray Interactor.prefab using Guid(ad818c36731146e994540a1896ad8f24) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'e8ee67da1e6bf566a9c7af47e0781406') in 0.0268163 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 10
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Far Grab Samples.prefab
- artifactKey: Guid(f5ee409d69254d64da7a3b74d31a5a40) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Far Grab Samples.prefab using Guid(f5ee409d69254d64da7a3b74d31a5a40) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'bbab8f456ba6ab0bc6256a58c2554633') in 0.0133064 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 84
- ========================================================================
- Received Import Request.
- Time since last request: 0.000026 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Teleportation Environment.prefab
- artifactKey: Guid(3e07eccb5e6f459d886de95044adb1d9) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Teleportation Environment.prefab using Guid(3e07eccb5e6f459d886de95044adb1d9) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b14b2aa563e2894dc63b43784d4a0dbb') in 0.0105397 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 103
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ToggleColorToggler.cs
- artifactKey: Guid(cb280e627cedda749b93045b8dd8d327) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ToggleColorToggler.cs using Guid(cb280e627cedda749b93045b8dd8d327) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'eef926310caf0ff09ce57367d8fa5fba') in 0.0078588 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/Settings/UniversalRenderPipelineGlobalSettings.asset
- artifactKey: Guid(18dc0cd2c080841dea60987a38ce93fa) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/Settings/UniversalRenderPipelineGlobalSettings.asset using Guid(18dc0cd2c080841dea60987a38ce93fa) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '97db2bbe38a81759aa396ebf941ce6aa') in 0.0659032 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000016 seconds.
- path: Assets/MobileARTemplateAssets/Tutorial/Images/ARMobileThumbnailLarge.png
- artifactKey: Guid(cf19c6d5e0c0d4440acf6ef0d681f721) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/Tutorial/Images/ARMobileThumbnailLarge.png using Guid(cf19c6d5e0c0d4440acf6ef0d681f721) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a41572fba5e13b0f7bea84812ec4689a') in 0.013338 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/XR/UserSimulationSettings/SimulationEnvironmentAssetsManager.asset
- artifactKey: Guid(5135c822e9b1a427ea0f817d7e0343a7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/XR/UserSimulationSettings/SimulationEnvironmentAssetsManager.asset using Guid(5135c822e9b1a427ea0f817d7e0343a7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b76f56b335028f849a7b18d3653ee319') in 0.0087619 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000023 seconds.
- path: Assets/MobileARTemplateAssets/Prefabs/WedgeVariant.prefab
- artifactKey: Guid(aaf6326249753074fbc1148303020f26) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/Prefabs/WedgeVariant.prefab using Guid(aaf6326249753074fbc1148303020f26) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '88b4c092bbda11345ad3ce70e3b55d56') in 0.0140698 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 49
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader
- artifactKey: Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader using Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '943f49f00cd5d656fb90de8082b93157') in 0.0080476 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 0.000011 seconds.
- path: Assets/MobileARTemplateAssets/UI/Sprites/MixedCorners_1.png
- artifactKey: Guid(dbf11d919ae484544b627c4b07dcf6b4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/UI/Sprites/MixedCorners_1.png using Guid(dbf11d919ae484544b627c4b07dcf6b4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '386e00e611009c61e4b75b80b02d0083') in 0.0104893 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
- ========================================================================
- Received Import Request.
- Time since last request: 0.000013 seconds.
- path: Assets/MobileARTemplateAssets/Tutorial/TutorialWelcomePage.asset
- artifactKey: Guid(372cd04c6abd79145a59a935c886b287) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
- Start importing Assets/MobileARTemplateAssets/Tutorial/TutorialWelcomePage.asset using Guid(372cd04c6abd79145a59a935c886b287) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '8416715e1cfe1f169ae11a8427f3520e') in 0.0208222 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 2.01 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5984 unused Assets / (7.6 MB). Loaded Objects now: 6835.
- Memory consumption went from 159.4 MB to 151.8 MB.
- Total: 15.115800 ms (FindLiveObjects: 1.028900 ms CreateObjectMapping: 0.955600 ms MarkObjects: 8.233200 ms DeleteObjects: 4.897200 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.627 seconds
- Refreshing native plugins compatible for Editor in 1.01 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.596 seconds
- Domain Reload Profiling: 1224ms
- BeginReloadAssembly (205ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (64ms)
- RebuildCommonClasses (35ms)
- RebuildNativeTypeToScriptingClass (13ms)
- initialDomainReloadingComplete (26ms)
- LoadAllAssembliesAndSetupDomain (348ms)
- LoadAssemblies (245ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (184ms)
- TypeCache.Refresh (10ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (156ms)
- ResolveRequiredComponents (14ms)
- FinalizeReload (596ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (456ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (101ms)
- ProcessInitializeOnLoadAttributes (267ms)
- ProcessInitializeOnLoadMethodAttributes (70ms)
- AfterProcessingInitializeOnLoad (8ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (17ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.75 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.6 MB). Loaded Objects now: 6855.
- Memory consumption went from 215.9 MB to 205.3 MB.
- Total: 13.065900 ms (FindLiveObjects: 0.826700 ms CreateObjectMapping: 0.645000 ms MarkObjects: 5.460600 ms DeleteObjects: 6.132900 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.55 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (7.2 MB). Loaded Objects now: 6849.
- Memory consumption went from 189.0 MB to 181.8 MB.
- Total: 15.250100 ms (FindLiveObjects: 1.232500 ms CreateObjectMapping: 1.214300 ms MarkObjects: 7.643500 ms DeleteObjects: 5.159100 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Import Request.
- Time since last request: 59.516489 seconds.
- path: Assets/FaceRaiders/Scripts/GameManager.cs
- artifactKey: Guid(703b2d589e1d3594984fc6b72defee16) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/FaceRaiders/Scripts/GameManager.cs using Guid(703b2d589e1d3594984fc6b72defee16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '39b06ddea42617ac71aeb7e00e307eae') in 0.0288378 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- [Licensing::Client] Successfully resolved entitlement details
- - Loaded All Assemblies, in 0.576 seconds
- Refreshing native plugins compatible for Editor in 1.51 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.551 seconds
- Domain Reload Profiling: 1128ms
- BeginReloadAssembly (168ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (39ms)
- RebuildCommonClasses (28ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (20ms)
- LoadAllAssembliesAndSetupDomain (348ms)
- LoadAssemblies (223ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (197ms)
- TypeCache.Refresh (11ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (168ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (551ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (408ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (100ms)
- ProcessInitializeOnLoadAttributes (226ms)
- ProcessInitializeOnLoadMethodAttributes (68ms)
- AfterProcessingInitializeOnLoad (6ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.86 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.6 MB). Loaded Objects now: 6857.
- Memory consumption went from 215.8 MB to 205.3 MB.
- Total: 12.637400 ms (FindLiveObjects: 1.122400 ms CreateObjectMapping: 0.988100 ms MarkObjects: 5.885400 ms DeleteObjects: 4.640500 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.71 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (8.1 MB). Loaded Objects now: 6851.
- Memory consumption went from 189.1 MB to 181.0 MB.
- Total: 11.570800 ms (FindLiveObjects: 1.032700 ms CreateObjectMapping: 0.591200 ms MarkObjects: 5.581300 ms DeleteObjects: 4.364900 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.623 seconds
- Refreshing native plugins compatible for Editor in 1.60 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.606 seconds
- Domain Reload Profiling: 1229ms
- BeginReloadAssembly (191ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (4ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (44ms)
- RebuildCommonClasses (32ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (30ms)
- LoadAllAssembliesAndSetupDomain (353ms)
- LoadAssemblies (258ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (183ms)
- TypeCache.Refresh (9ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (157ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (607ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (444ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (108ms)
- ProcessInitializeOnLoadAttributes (243ms)
- ProcessInitializeOnLoadMethodAttributes (72ms)
- AfterProcessingInitializeOnLoad (9ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (16ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.32 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.3 MB). Loaded Objects now: 6859.
- Memory consumption went from 215.8 MB to 205.5 MB.
- Total: 10.998100 ms (FindLiveObjects: 1.014700 ms CreateObjectMapping: 0.759200 ms MarkObjects: 5.014200 ms DeleteObjects: 4.209500 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.50 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (8.0 MB). Loaded Objects now: 6853.
- Memory consumption went from 189.2 MB to 181.2 MB.
- Total: 10.425800 ms (FindLiveObjects: 0.985200 ms CreateObjectMapping: 0.380400 ms MarkObjects: 4.708100 ms DeleteObjects: 4.351300 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.630 seconds
- Refreshing native plugins compatible for Editor in 1.83 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.647 seconds
- Domain Reload Profiling: 1276ms
- BeginReloadAssembly (190ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (46ms)
- RebuildCommonClasses (43ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (29ms)
- LoadAllAssembliesAndSetupDomain (350ms)
- LoadAssemblies (259ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (176ms)
- TypeCache.Refresh (9ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (155ms)
- ResolveRequiredComponents (9ms)
- FinalizeReload (648ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (493ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (133ms)
- ProcessInitializeOnLoadAttributes (270ms)
- ProcessInitializeOnLoadMethodAttributes (73ms)
- AfterProcessingInitializeOnLoad (6ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.32 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.7 MB). Loaded Objects now: 6861.
- Memory consumption went from 216.0 MB to 205.4 MB.
- Total: 12.825900 ms (FindLiveObjects: 0.996400 ms CreateObjectMapping: 0.681800 ms MarkObjects: 6.384900 ms DeleteObjects: 4.762000 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 2.06 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (7.6 MB). Loaded Objects now: 6855.
- Memory consumption went from 189.2 MB to 181.6 MB.
- Total: 14.694800 ms (FindLiveObjects: 1.018600 ms CreateObjectMapping: 0.981900 ms MarkObjects: 7.812500 ms DeleteObjects: 4.880800 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- [Licensing::Client] Successfully resolved entitlement details
- - Loaded All Assemblies, in 0.595 seconds
- Refreshing native plugins compatible for Editor in 1.33 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.631 seconds
- Domain Reload Profiling: 1226ms
- BeginReloadAssembly (174ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (44ms)
- RebuildCommonClasses (29ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (25ms)
- LoadAllAssembliesAndSetupDomain (354ms)
- LoadAssemblies (232ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (193ms)
- TypeCache.Refresh (7ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (168ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (631ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (481ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (6ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (121ms)
- ProcessInitializeOnLoadAttributes (274ms)
- ProcessInitializeOnLoadMethodAttributes (68ms)
- AfterProcessingInitializeOnLoad (9ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (17ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.28 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.4 MB). Loaded Objects now: 6863.
- Memory consumption went from 216.0 MB to 205.7 MB.
- Total: 11.515100 ms (FindLiveObjects: 1.009500 ms CreateObjectMapping: 0.317900 ms MarkObjects: 5.675300 ms DeleteObjects: 4.511900 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.80 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (7.8 MB). Loaded Objects now: 6857.
- Memory consumption went from 189.3 MB to 181.5 MB.
- Total: 11.417600 ms (FindLiveObjects: 0.655500 ms CreateObjectMapping: 0.644600 ms MarkObjects: 5.822600 ms DeleteObjects: 4.294200 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.642 seconds
- Refreshing native plugins compatible for Editor in 1.41 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.625 seconds
- Domain Reload Profiling: 1267ms
- BeginReloadAssembly (180ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (39ms)
- RebuildCommonClasses (46ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (28ms)
- LoadAllAssembliesAndSetupDomain (371ms)
- LoadAssemblies (250ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (200ms)
- TypeCache.Refresh (10ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (173ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (625ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (481ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (4ms)
- BeforeProcessingInitializeOnLoad (119ms)
- ProcessInitializeOnLoadAttributes (276ms)
- ProcessInitializeOnLoadMethodAttributes (68ms)
- AfterProcessingInitializeOnLoad (6ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (11ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.46 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.2 MB). Loaded Objects now: 6865.
- Memory consumption went from 216.1 MB to 205.9 MB.
- Total: 10.563800 ms (FindLiveObjects: 0.784000 ms CreateObjectMapping: 0.294400 ms MarkObjects: 4.908900 ms DeleteObjects: 4.575900 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 2.33 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (7.9 MB). Loaded Objects now: 6859.
- Memory consumption went from 189.3 MB to 181.5 MB.
- Total: 10.656200 ms (FindLiveObjects: 0.923600 ms CreateObjectMapping: 0.309600 ms MarkObjects: 4.956800 ms DeleteObjects: 4.465400 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.635 seconds
- Refreshing native plugins compatible for Editor in 1.65 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.635 seconds
- Domain Reload Profiling: 1270ms
- BeginReloadAssembly (187ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (41ms)
- RebuildCommonClasses (43ms)
- RebuildNativeTypeToScriptingClass (15ms)
- initialDomainReloadingComplete (28ms)
- LoadAllAssembliesAndSetupDomain (362ms)
- LoadAssemblies (260ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (195ms)
- TypeCache.Refresh (10ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (169ms)
- ResolveRequiredComponents (12ms)
- FinalizeReload (635ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (481ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (7ms)
- SetLoadedEditorAssemblies (3ms)
- BeforeProcessingInitializeOnLoad (127ms)
- ProcessInitializeOnLoadAttributes (269ms)
- ProcessInitializeOnLoadMethodAttributes (66ms)
- AfterProcessingInitializeOnLoad (8ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (12ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.85 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.4 MB). Loaded Objects now: 6867.
- Memory consumption went from 216.1 MB to 205.6 MB.
- Total: 9.968900 ms (FindLiveObjects: 0.723100 ms CreateObjectMapping: 0.467400 ms MarkObjects: 4.544500 ms DeleteObjects: 4.233400 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.61 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (8.1 MB). Loaded Objects now: 6861.
- Memory consumption went from 189.4 MB to 181.4 MB.
- Total: 12.007500 ms (FindLiveObjects: 1.040000 ms CreateObjectMapping: 0.613000 ms MarkObjects: 5.210900 ms DeleteObjects: 5.142800 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- [Licensing::Client] Successfully resolved entitlement details
- - Loaded All Assemblies, in 0.657 seconds
- Refreshing native plugins compatible for Editor in 1.87 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.632 seconds
- Domain Reload Profiling: 1287ms
- BeginReloadAssembly (193ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (5ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (1ms)
- CreateAndSetChildDomain (50ms)
- RebuildCommonClasses (35ms)
- RebuildNativeTypeToScriptingClass (17ms)
- initialDomainReloadingComplete (33ms)
- LoadAllAssembliesAndSetupDomain (377ms)
- LoadAssemblies (258ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (198ms)
- TypeCache.Refresh (10ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (171ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (632ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (484ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (4ms)
- BeforeProcessingInitializeOnLoad (126ms)
- ProcessInitializeOnLoadAttributes (267ms)
- ProcessInitializeOnLoadMethodAttributes (72ms)
- AfterProcessingInitializeOnLoad (7ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.07 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (10.2 MB). Loaded Objects now: 6869.
- Memory consumption went from 216.2 MB to 206.0 MB.
- Total: 11.357100 ms (FindLiveObjects: 1.043600 ms CreateObjectMapping: 0.522300 ms MarkObjects: 5.381500 ms DeleteObjects: 4.409100 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 2.05 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 5979 unused Assets / (5.2 MB). Loaded Objects now: 6863.
- Memory consumption went from 189.5 MB to 184.3 MB.
- Total: 12.585300 ms (FindLiveObjects: 1.053200 ms CreateObjectMapping: 0.339900 ms MarkObjects: 7.154900 ms DeleteObjects: 4.036300 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Prepare
- Begin MonoManager ReloadAssembly
- - Loaded All Assemblies, in 0.605 seconds
- Refreshing native plugins compatible for Editor in 1.35 ms, found 1 plugins.
- Native extension for Android target not found
- Native extension for WindowsStandalone target not found
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
- Mono: successfully reloaded assembly
- [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
- [Package Manager] Unable to send message (not connected to server process).
- [Package Manager] Cannot connect to Unity Package Manager local server
- - Finished resetting the current domain, in 0.627 seconds
- Domain Reload Profiling: 1233ms
- BeginReloadAssembly (170ms)
- ExecutionOrderSort (0ms)
- DisableScriptedObjects (6ms)
- BackupInstance (0ms)
- ReleaseScriptingObjects (0ms)
- CreateAndSetChildDomain (37ms)
- RebuildCommonClasses (29ms)
- RebuildNativeTypeToScriptingClass (12ms)
- initialDomainReloadingComplete (24ms)
- LoadAllAssembliesAndSetupDomain (371ms)
- LoadAssemblies (251ms)
- RebuildTransferFunctionScriptingTraits (0ms)
- AnalyzeDomain (194ms)
- TypeCache.Refresh (10ms)
- TypeCache.ScanAssembly (1ms)
- BuildScriptInfoCaches (167ms)
- ResolveRequiredComponents (13ms)
- FinalizeReload (627ms)
- ReleaseScriptCaches (0ms)
- RebuildScriptCaches (0ms)
- SetupLoadedEditorAssemblies (475ms)
- LogAssemblyErrors (0ms)
- InitializePlatformSupportModulesInManaged (8ms)
- SetLoadedEditorAssemblies (4ms)
- BeforeProcessingInitializeOnLoad (117ms)
- ProcessInitializeOnLoadAttributes (265ms)
- ProcessInitializeOnLoadMethodAttributes (73ms)
- AfterProcessingInitializeOnLoad (8ms)
- EditorAssembliesLoaded (0ms)
- ExecutionOrderSort2 (0ms)
- AwakeInstancesAfterBackupRestoration (14ms)
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
- WARNING: Shader Did you use #pragma only_renderers and omit this platform?
- WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
- Refreshing native plugins compatible for Editor in 1.65 ms, found 1 plugins.
- Preloading 0 native plugins for Editor in 0.00 ms.
- Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
- Unloading 6006 unused Assets / (11.1 MB). Loaded Objects now: 6871.
- Memory consumption went from 216.2 MB to 205.1 MB.
- Total: 10.628800 ms (FindLiveObjects: 0.752300 ms CreateObjectMapping: 0.407800 ms MarkObjects: 4.624500 ms DeleteObjects: 4.843500 ms)
- Prepare: number of updated asset objects reloaded= 0
- ========================================================================
- Received Import Request.
- Time since last request: 300.927565 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/PushButton.fbx
- artifactKey: Guid(7ab6f3b0fd1a6ba41b2a47766c16613f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/PushButton.fbx using Guid(7ab6f3b0fd1a6ba41b2a47766c16613f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'f74407f19d9138bdf6f9c7741dbbc39a') in 0.7692982 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 18
- ========================================================================
- Received Import Request.
- Time since last request: 3.200870 seconds.
- path: Assets/XR/XRGeneralSettings.asset
- artifactKey: Guid(3fd4fc0127790db4bae83f7b77da8d45) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/XR/XRGeneralSettings.asset using Guid(3fd4fc0127790db4bae83f7b77da8d45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '111218141528e2adf446b018c47f241b') in 0.0013602 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000022 seconds.
- path: Assets/XR/Settings/AR Kit Settings.asset
- artifactKey: Guid(0465d33c6aee55f44b0237db8b0e0259) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/XR/Settings/AR Kit Settings.asset using Guid(0465d33c6aee55f44b0237db8b0e0259) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'cf37c1d8333c368c34c8de79c446b7e7') in 0.0005745 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
- ========================================================================
- Received Import Request.
- Time since last request: 0.000023 seconds.
- path: Assets/XR/Resources/ARCoreRuntimeSettings.asset
- artifactKey: Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/XR/Resources/ARCoreRuntimeSettings.asset using Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '3611b171d9127be41244a2c4bdd1b1f3') in 0.0019849 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
- ========================================================================
- Received Import Request.
- Time since last request: 2.472215 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Pyramid.fbx
- artifactKey: Guid(63e02ddb08ce42da868504e1333d48ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Pyramid.fbx using Guid(63e02ddb08ce42da868504e1333d48ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'a134d8c0b5cb7e10042ee99e5e9c2de0') in 0.3416029 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
- ========================================================================
- Received Import Request.
- Time since last request: 0.000025 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus.fbx
- artifactKey: Guid(f077c919501a44778a0c2edb6eb1a54a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus.fbx using Guid(f077c919501a44778a0c2edb6eb1a54a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '6fce6701318f95c772ed98b3421337d2') in 0.0157318 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
- ========================================================================
- Received Import Request.
- Time since last request: 0.000027 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Tapered_Cylinder.fbx
- artifactKey: Guid(e3493855a112e8248a2ea2c9828a51a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Tapered_Cylinder.fbx using Guid(e3493855a112e8248a2ea2c9828a51a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'e8ddeab48d6dc5ce227cc55046ae5d01') in 0.0134473 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
- ========================================================================
- Received Import Request.
- Time since last request: 0.000017 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Wedge.fbx
- artifactKey: Guid(504f04868fdec43fea10caa71569c542) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Wedge.fbx using Guid(504f04868fdec43fea10caa71569c542) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'c1e858ad11139563961e92c917b6470f') in 0.0130531 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
- ========================================================================
- Received Import Request.
- Time since last request: 0.000024 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx
- artifactKey: Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx using Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '124b733a154e77aab5e58fe7731838a1') in 0.0253953 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
- ========================================================================
- Received Import Request.
- Time since last request: 0.000019 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx
- artifactKey: Guid(46c1c422ff6897f49a404b012dc924d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx using Guid(46c1c422ff6897f49a404b012dc924d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '24893ce5348c9fc2a76bfaf66a43fa8f') in 0.0170926 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
- ========================================================================
- Received Import Request.
- Time since last request: 0.000022 seconds.
- path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Torus.fbx
- artifactKey: Guid(a100fee70bb8248c49f00bd953b097c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
- Start importing Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Torus.fbx using Guid(a100fee70bb8248c49f00bd953b097c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'b72cd322f90e71c77e068036971882c9') in 0.0133597 seconds
- Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
- Editor requested this worker to shutdown with reason: Scaling down because of idle timeout
- AssetImportWorker is now disconnected from the server
- Process exiting
- Exiting without the bug reporter. Application will terminate with return code 0
|