AssetImportWorker2.log 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. [Licensing::Module] Trying to connect to existing licensing client channel...
  2. Built from '6000.3/staging' branch; Version is '6000.3.11f1 (3000ef702840) revision 3145967'; Using compiler version '194234433'; Build Type 'Release'
  3. OS: 'Windows 11 (10.0.26200) Core' Language: 'en' Physical Memory: 31863 MB
  4. [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam" at "2026-05-14T10:10:04.2395579Z"
  5. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1
  6. System architecture: x64
  7. Process architecture: x64
  8. Date: 2026-05-14T10:10:04Z
  9. COMMAND LINE ARGUMENTS:
  10. C:\Program Files\Unity\Hub\Editor\6000.3.11f1\Editor\Unity.exe
  11. -adb2
  12. -batchMode
  13. -noUpm
  14. -name
  15. AssetImportWorker2
  16. -projectPath
  17. F:/UnityProjects/GAMEN4_AR_Unity
  18. -logFile
  19. Logs/AssetImportWorker2.log
  20. -srvPort
  21. 64857
  22. -job-worker-count
  23. 7
  24. -background-job-worker-count
  25. 8
  26. -gc-helper-count
  27. 1
  28. -name
  29. AssetImport
  30. Successfully changed project path to: F:/UnityProjects/GAMEN4_AR_Unity
  31. F:/UnityProjects/GAMEN4_AR_Unity
  32. [UnityMemory] Configuration Parameters - Can be set up in boot.config
  33. "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
  34. "memorysetup-temp-allocator-size-audio-worker=65536"
  35. "memorysetup-temp-allocator-size-gfx=262144"
  36. "memorysetup-allocator-temp-initial-block-size-main=262144"
  37. "memorysetup-allocator-temp-initial-block-size-worker=262144"
  38. "memorysetup-temp-allocator-size-background-worker=32768"
  39. "memorysetup-temp-allocator-size-job-worker=262144"
  40. "memorysetup-temp-allocator-size-preload-manager=33554432"
  41. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  42. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  43. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  44. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  45. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  46. "memorysetup-bucket-allocator-granularity=16"
  47. "memorysetup-bucket-allocator-bucket-count=8"
  48. "memorysetup-bucket-allocator-block-size=33554432"
  49. "memorysetup-bucket-allocator-block-count=8"
  50. "memorysetup-main-allocator-block-size=16777216"
  51. "memorysetup-thread-allocator-block-size=16777216"
  52. "memorysetup-gfx-main-allocator-block-size=16777216"
  53. "memorysetup-gfx-thread-allocator-block-size=16777216"
  54. "memorysetup-cache-allocator-block-size=4194304"
  55. "memorysetup-typetree-allocator-block-size=2097152"
  56. "memorysetup-profiler-bucket-allocator-granularity=16"
  57. "memorysetup-profiler-bucket-allocator-bucket-count=8"
  58. "memorysetup-profiler-bucket-allocator-block-size=33554432"
  59. "memorysetup-profiler-bucket-allocator-block-count=8"
  60. "memorysetup-profiler-allocator-block-size=16777216"
  61. "memorysetup-profiler-editor-allocator-block-size=1048576"
  62. "memorysetup-temp-allocator-size-main=16777216"
  63. "memorysetup-job-temp-allocator-block-size=2097152"
  64. "memorysetup-job-temp-allocator-block-size-background=1048576"
  65. "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
  66. "memorysetup-temp-allocator-size-cloud-worker=32768"
  67. Player connection [39584] Target information:
  68. 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"
  69. Player connection [39584] Host joined multi-casting on [225.0.0.222:54997]...
  70. Player connection [39584] Host joined alternative multi-casting on [225.0.0.222:34997]...
  71. JobSystem: Creating JobQueue using job-worker-count value 7
  72. Input System module state changed to: Initialized.
  73. [Physics::Module] Initialized fallback backend.
  74. [Physics::Module] Id: 0xdecafbad
  75. Library Redirect Path: Library/
  76. [Physics::Module] Selected backend.
  77. [Physics::Module] Name: PhysX
  78. [Physics::Module] Id: 0xf2b8ea05
  79. [Physics::Module] SDK Version: 4.1.2
  80. [Physics::Module] Integration Version: 1.0.0
  81. [Physics::Module] Threading Mode: Multi-Threaded
  82. Refreshing native plugins compatible for Editor in 2.66 ms, found 1 plugins.
  83. Preloading 0 native plugins for Editor in 0.00 ms.
  84. Initialize engine version: 6000.3.11f1 (3000ef702840)
  85. [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/Resources/UnitySubsystems
  86. [Subsystems] Discovering subsystems at path F:/UnityProjects/GAMEN4_AR_Unity/Assets
  87. GfxDevice: creating device client; kGfxThreadingModeNonThreaded
  88. Direct3D:
  89. Version: Direct3D 11.0 [level 11.1]
  90. Renderer: NVIDIA GeForce RTX 4070 (ID=0x2786)
  91. Vendor: NVIDIA
  92. VRAM: 12010 MB
  93. Driver: 32.0.15.9636
  94. Initialize mono
  95. Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/Managed'
  96. Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
  97. Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/MonoBleedingEdge/etc'
  98. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56868
  99. Begin MonoManager ReloadAssembly
  100. Registering precompiled unity dll's ...
  101. Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  102. [Licensing::Module] Licensing is not yet initialized.
  103. [Licensing::Client] Error: HandshakeResponse reported an error:
  104. ResponseCode: 505
  105. ResponseStatus: Unsupported protocol version '1.18.0'.
  106. [Licensing::Module] Error: Failed to handshake to channel: "LicenseClient-Adam"
  107. [Licensing::IpcConnector] LicenseClient-Adam channel disconnected successfully.
  108. [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam-6000.3.11" at "2026-05-14T10:10:05.556049Z"
  109. [Licensing::Client] Handshaking with LicensingClient:
  110. Version: 1.18.0+23225a6
  111. Session Id: aa71d785ff544109935c9ca9f69e0d2a
  112. Correlation Id: b42e6e9f2ff0eb3e9e3858afe4798231
  113. External correlation Id: 1128395646808945948
  114. Machine Id: M36UPhR5wcvpby2zAKm+eN+byl4=
  115. [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-Adam-6000.3.11" (connect: 0.00s, validation: 0.00s, handshake: 0.14s)
  116. [Licensing::IpcConnector] Successfully connected to: "LicenseClient-Adam-6000.3.11-notifications" at "2026-05-14T10:10:05.7010843Z"
  117. [Licensing::Module] Licensing Background thread has ended after 1.46s
  118. [Licensing::Module] Licensing is initialized (took 0.41s).
  119. [Licensing::Client] Successfully resolved entitlement details
  120. [Licensing::Module] License group:
  121. Id: 9071008393419-UnityPersXXXX
  122. Product: Unity Personal
  123. Type: Assigned
  124. Expiration: Unlimited
  125. Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.11f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
  126. Registered in 0.417337 seconds.
  127. - Loaded All Assemblies, in 0.851 seconds
  128. Native extension for Android target not found
  129. Native extension for WindowsStandalone target not found
  130. Package Manager log level set to [2]
  131. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  132. [Package Manager] Unable to send message (not connected to server process).
  133. [Package Manager] Cannot connect to Unity Package Manager local server
  134. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  135. Mono: successfully reloaded assembly
  136. - Finished resetting the current domain, in 0.378 seconds
  137. Domain Reload Profiling: 1227ms
  138. BeginReloadAssembly (145ms)
  139. ExecutionOrderSort (0ms)
  140. DisableScriptedObjects (0ms)
  141. BackupInstance (0ms)
  142. ReleaseScriptingObjects (0ms)
  143. CreateAndSetChildDomain (1ms)
  144. RebuildCommonClasses (43ms)
  145. RebuildNativeTypeToScriptingClass (16ms)
  146. initialDomainReloadingComplete (464ms)
  147. LoadAllAssembliesAndSetupDomain (179ms)
  148. LoadAssemblies (141ms)
  149. RebuildTransferFunctionScriptingTraits (0ms)
  150. AnalyzeDomain (176ms)
  151. TypeCache.Refresh (174ms)
  152. TypeCache.ScanAssembly (162ms)
  153. BuildScriptInfoCaches (0ms)
  154. ResolveRequiredComponents (0ms)
  155. FinalizeReload (379ms)
  156. ReleaseScriptCaches (0ms)
  157. RebuildScriptCaches (0ms)
  158. SetupLoadedEditorAssemblies (330ms)
  159. LogAssemblyErrors (0ms)
  160. InitializePlatformSupportModulesInManaged (47ms)
  161. SetLoadedEditorAssemblies (3ms)
  162. BeforeProcessingInitializeOnLoad (71ms)
  163. ProcessInitializeOnLoadAttributes (128ms)
  164. ProcessInitializeOnLoadMethodAttributes (81ms)
  165. AfterProcessingInitializeOnLoad (0ms)
  166. EditorAssembliesLoaded (0ms)
  167. ExecutionOrderSort2 (0ms)
  168. AwakeInstancesAfterBackupRestoration (0ms)
  169. ========================================================================
  170. Worker process is ready to serve import requests
  171. Import Worker Mode flag is 0x00
  172. Begin MonoManager ReloadAssembly
  173. [Licensing::Client] Successfully resolved entitlement details
  174. - Loaded All Assemblies, in 0.806 seconds
  175. Refreshing native plugins compatible for Editor in 1.79 ms, found 1 plugins.
  176. Native extension for Android target not found
  177. Native extension for WindowsStandalone target not found
  178. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  179. [Package Manager] Unable to send message (not connected to server process).
  180. [Package Manager] Cannot connect to Unity Package Manager local server
  181. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  182. [Package Manager] Unable to send message (not connected to server process).
  183. [Package Manager] Cannot connect to Unity Package Manager local server
  184. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  185. Mono: successfully reloaded assembly
  186. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  187. [Package Manager] Unable to send message (not connected to server process).
  188. [Package Manager] Cannot connect to Unity Package Manager local server
  189. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  190. [Package Manager] Unable to send message (not connected to server process).
  191. [Package Manager] Cannot connect to Unity Package Manager local server
  192. - Finished resetting the current domain, in 0.714 seconds
  193. Domain Reload Profiling: 1514ms
  194. BeginReloadAssembly (190ms)
  195. ExecutionOrderSort (0ms)
  196. DisableScriptedObjects (5ms)
  197. BackupInstance (0ms)
  198. ReleaseScriptingObjects (0ms)
  199. CreateAndSetChildDomain (35ms)
  200. RebuildCommonClasses (46ms)
  201. RebuildNativeTypeToScriptingClass (17ms)
  202. initialDomainReloadingComplete (46ms)
  203. LoadAllAssembliesAndSetupDomain (502ms)
  204. LoadAssemblies (325ms)
  205. RebuildTransferFunctionScriptingTraits (0ms)
  206. AnalyzeDomain (281ms)
  207. TypeCache.Refresh (196ms)
  208. TypeCache.ScanAssembly (177ms)
  209. BuildScriptInfoCaches (68ms)
  210. ResolveRequiredComponents (13ms)
  211. FinalizeReload (714ms)
  212. ReleaseScriptCaches (0ms)
  213. RebuildScriptCaches (0ms)
  214. SetupLoadedEditorAssemblies (519ms)
  215. LogAssemblyErrors (0ms)
  216. InitializePlatformSupportModulesInManaged (9ms)
  217. SetLoadedEditorAssemblies (4ms)
  218. BeforeProcessingInitializeOnLoad (148ms)
  219. ProcessInitializeOnLoadAttributes (272ms)
  220. ProcessInitializeOnLoadMethodAttributes (76ms)
  221. AfterProcessingInitializeOnLoad (10ms)
  222. EditorAssembliesLoaded (0ms)
  223. ExecutionOrderSort2 (0ms)
  224. AwakeInstancesAfterBackupRestoration (6ms)
  225. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  226. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  227. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  228. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  229. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  230. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  231. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  232. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  233. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  234. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  235. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  236. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  237. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  238. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  239. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  240. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  241. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  242. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  243. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  244. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  245. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  246. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  247. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  248. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  249. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  250. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  251. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  252. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  253. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  254. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  255. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  256. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  257. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  258. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  259. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  260. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  261. Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds
  262. Refreshing native plugins compatible for Editor in 1.92 ms, found 1 plugins.
  263. Preloading 0 native plugins for Editor in 0.00 ms.
  264. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  265. Unloading 6007 unused Assets / (10.6 MB). Loaded Objects now: 6830.
  266. Memory consumption went from 161.6 MB to 151.1 MB.
  267. Total: 14.046000 ms (FindLiveObjects: 1.034800 ms CreateObjectMapping: 1.081500 ms MarkObjects: 7.090600 ms DeleteObjects: 4.838000 ms)
  268. ========================================================================
  269. Received Import Request.
  270. Time since last request: 72205.237518 seconds.
  271. path: Assets/TextMesh Pro/Shaders/TMP_SDF.shader
  272. artifactKey: Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  273. Start importing Assets/TextMesh Pro/Shaders/TMP_SDF.shader using Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '60577537c0675c103a2ae53fac0defbf') in 0.110192 seconds
  274. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  275. ========================================================================
  276. Received Import Request.
  277. Time since last request: 0.000019 seconds.
  278. path: Assets/Settings/SampleSceneProfile.asset
  279. artifactKey: Guid(a6560a915ef98420e9faacc1c7438823) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  280. Start importing Assets/Settings/SampleSceneProfile.asset using Guid(a6560a915ef98420e9faacc1c7438823) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4e107a1e500cee29cc614832f7f83448') in 0.0171362 seconds
  281. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
  282. ========================================================================
  283. Received Import Request.
  284. Time since last request: 0.000018 seconds.
  285. path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader
  286. artifactKey: Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  287. Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader using Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'c37cb72b08e7f790011733e3dffdff03') in 0.0086676 seconds
  288. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  289. ========================================================================
  290. Received Import Request.
  291. Time since last request: 0.000025 seconds.
  292. path: Assets/Settings/Project Configuration/SampleScene.scenetemplate
  293. artifactKey: Guid(cd3fa84c57338574abb086f0c361d881) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  294. Start importing Assets/Settings/Project Configuration/SampleScene.scenetemplate using Guid(cd3fa84c57338574abb086f0c361d881) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'ab4416f6e1d9e001ad29b26e925bd1b8') in 0.0610851 seconds
  295. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 76
  296. ========================================================================
  297. Received Import Request.
  298. Time since last request: 0.000019 seconds.
  299. path: Assets/MobileARTemplateAssets/UI/Fonts/Inter-Regular_SDF_Underlay.mat
  300. artifactKey: Guid(9df90d896a1f14b39a85af1c83541d54) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  301. 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
  302. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  303. ========================================================================
  304. Received Import Request.
  305. Time since last request: 0.000016 seconds.
  306. path: Assets/MobileARTemplateAssets/UI/Animation/Prompt_TapToPlace.controller
  307. artifactKey: Guid(fcdde18e252494d829bad47b6c18d058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  308. Start importing Assets/MobileARTemplateAssets/UI/Animation/Prompt_TapToPlace.controller using Guid(fcdde18e252494d829bad47b6c18d058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '51b52d09c3a94ead763951430148494d') in 0.0110758 seconds
  309. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
  310. ========================================================================
  311. Received Import Request.
  312. Time since last request: 0.000018 seconds.
  313. path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_InputHints.prefab
  314. artifactKey: Guid(7cb8fbdf1642648388b0fc742b553264) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  315. Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_InputHints.prefab using Guid(7cb8fbdf1642648388b0fc742b553264) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2f373bda055a8003ccbedafdc3db43ed') in 0.1300307 seconds
  316. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 139
  317. ========================================================================
  318. Received Import Request.
  319. Time since last request: 0.000033 seconds.
  320. path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_RotateObject.prefab
  321. artifactKey: Guid(d6df0df54b7dd4cd9ae7fa880a63e827) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  322. Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_RotateObject.prefab using Guid(d6df0df54b7dd4cd9ae7fa880a63e827) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '16c7048ad98ba601ab6bc42f728359ef') in 0.0182446 seconds
  323. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 61
  324. ========================================================================
  325. Received Import Request.
  326. Time since last request: 0.000015 seconds.
  327. path: Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph
  328. artifactKey: Guid(a3d800b099a06e0478fb790c5e79057a) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  329. 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
  330. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
  331. ========================================================================
  332. Received Import Request.
  333. Time since last request: 0.000019 seconds.
  334. path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader
  335. artifactKey: Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  336. 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
  337. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  338. ========================================================================
  339. Received Import Request.
  340. Time since last request: 0.000016 seconds.
  341. path: Assets/Settings/URP-Performant.asset
  342. artifactKey: Guid(d0e2fc18fe036412f8223b3b3d9ad574) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  343. Start importing Assets/Settings/URP-Performant.asset using Guid(d0e2fc18fe036412f8223b3b3d9ad574) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '09e7b7595720af68b733024aa50dea02') in 0.0455163 seconds
  344. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  345. ========================================================================
  346. Received Import Request.
  347. Time since last request: 0.000018 seconds.
  348. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube_Lift_Mask.png
  349. artifactKey: Guid(7d243d9badfce4aa5867d7ce26d0c7c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  350. 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
  351. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  352. ========================================================================
  353. Received Import Request.
  354. Time since last request: 0.000027 seconds.
  355. path: Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc
  356. artifactKey: Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  357. Start importing Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc using Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'feab35db0c633f652ce36403efb7042a') in 0.0094953 seconds
  358. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  359. ========================================================================
  360. Received Import Request.
  361. Time since last request: 0.000015 seconds.
  362. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-ScaleAxisGizmo.png
  363. artifactKey: Guid(bd0fe3abc36404b2dbebd9ae74eb79c7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  364. Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-ScaleAxisGizmo.png using Guid(bd0fe3abc36404b2dbebd9ae74eb79c7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '3feb09d828aa45e7659e7c37c8d5dfbd') in 0.0146194 seconds
  365. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  366. ========================================================================
  367. Received Import Request.
  368. Time since last request: 0.000017 seconds.
  369. path: Assets/XR/Resources/ARCoreRuntimeSettings.asset
  370. artifactKey: Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  371. Start importing Assets/XR/Resources/ARCoreRuntimeSettings.asset using Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '80ae1392b0b37951722f619f273d9def') in 0.0136819 seconds
  372. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  373. ========================================================================
  374. Received Import Request.
  375. Time since last request: 0.000017 seconds.
  376. path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader
  377. artifactKey: Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  378. Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader using Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4574b4eeece4e29f0452daf27478b63e') in 0.0093779 seconds
  379. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  380. ========================================================================
  381. Received Import Request.
  382. Time since last request: 0.000013 seconds.
  383. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube.png
  384. artifactKey: Guid(f9e6d8a7f941049e3a17d025c44a07e5) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  385. Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-Cube.png using Guid(f9e6d8a7f941049e3a17d025c44a07e5) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2962df2749c1960fb0a2f49376bcc305') in 0.0111875 seconds
  386. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  387. ========================================================================
  388. Received Import Request.
  389. Time since last request: 0.000018 seconds.
  390. path: Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph
  391. artifactKey: Guid(124c112a6e8f1a54e8b0870e881b56d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  392. 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
  393. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
  394. ========================================================================
  395. Received Import Request.
  396. Time since last request: 0.000019 seconds.
  397. path: Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_MoveObject.prefab
  398. artifactKey: Guid(dae86721c71ee42018bbec0181a4e52e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  399. Start importing Assets/MobileARTemplateAssets/UI/Prefabs/Prompt_MoveObject.prefab using Guid(dae86721c71ee42018bbec0181a4e52e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '8681775d26f2ef48bfe276e3e4415c8c') in 0.0153896 seconds
  400. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 51
  401. ========================================================================
  402. Received Import Request.
  403. Time since last request: 0.000015 seconds.
  404. path: Assets/Settings/Project Configuration/SceneTemplate_RotateCube.cs
  405. artifactKey: Guid(6f17310979bb8bc409d7bc10ebea601c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  406. Start importing Assets/Settings/Project Configuration/SceneTemplate_RotateCube.cs using Guid(6f17310979bb8bc409d7bc10ebea601c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a6ad2c6ae663abd56d631130835ba8ca') in 0.0077363 seconds
  407. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  408. ========================================================================
  409. Received Import Request.
  410. Time since last request: 0.000014 seconds.
  411. path: Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
  412. artifactKey: Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  413. 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
  414. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  415. ========================================================================
  416. Received Import Request.
  417. Time since last request: 0.000015 seconds.
  418. path: Assets/XR/Resources/XRSimulationRuntimeSettings.asset
  419. artifactKey: Guid(e9b2504bcc65542929413802f7fe8283) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  420. Start importing Assets/XR/Resources/XRSimulationRuntimeSettings.asset using Guid(e9b2504bcc65542929413802f7fe8283) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '19daa24ebed96fdf48fa8c39490a7b9e') in 0.0138581 seconds
  421. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  422. ========================================================================
  423. Received Import Request.
  424. Time since last request: 0.000015 seconds.
  425. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-RotateAxisGizmo.png
  426. artifactKey: Guid(5b761a716f9a14b1f96d86db91468013) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  427. Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-RotateAxisGizmo.png using Guid(5b761a716f9a14b1f96d86db91468013) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'de97f8d9aee0edf5479c7ed6afb4f993') in 0.0114149 seconds
  428. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  429. ========================================================================
  430. Received Import Request.
  431. Time since last request: 0.000015 seconds.
  432. path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader
  433. artifactKey: Guid(0178fcb869bafef4690d177d31d17db8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  434. 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
  435. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  436. ========================================================================
  437. Received Import Request.
  438. Time since last request: 0.000024 seconds.
  439. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-MoveAxisGizmos.png
  440. artifactKey: Guid(51013162d2e1a4a09ae16e48154ceb5f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  441. Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-MoveAxisGizmos.png using Guid(51013162d2e1a4a09ae16e48154ceb5f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '666398f5edb54a6b541cda1801f173a6') in 0.0119817 seconds
  442. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  443. ========================================================================
  444. Received Import Request.
  445. Time since last request: 0.000017 seconds.
  446. path: Assets/MobileARTemplateAssets/Prefabs/PyramidVariant.prefab
  447. artifactKey: Guid(3cbfcd4079a5031478389d5ab3c8c311) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  448. Start importing Assets/MobileARTemplateAssets/Prefabs/PyramidVariant.prefab using Guid(3cbfcd4079a5031478389d5ab3c8c311) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '2a0812d027b3f4cd434c20e6359de2fd') in 0.0526107 seconds
  449. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 49
  450. ========================================================================
  451. Received Import Request.
  452. Time since last request: 0.000015 seconds.
  453. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Materials/Interactable.mat
  454. artifactKey: Guid(76618f7490c40334fa7b685859587d2e) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  455. 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
  456. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 8
  457. ========================================================================
  458. Received Import Request.
  459. Time since last request: 0.000019 seconds.
  460. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Cylinder.fbx
  461. artifactKey: Guid(9e1dc1c14313460d872de39e35129b39) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  462. 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
  463. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
  464. ========================================================================
  465. Received Import Request.
  466. Time since last request: 0.000023 seconds.
  467. path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
  468. artifactKey: Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  469. 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
  470. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
  471. ========================================================================
  472. Received Import Request.
  473. Time since last request: 0.000017 seconds.
  474. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Pinch_Pointer_LOD0.fbx
  475. artifactKey: Guid(e053b8fbc416ba349b4a58a26410bba2) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  476. 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
  477. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 6
  478. ========================================================================
  479. Received Import Request.
  480. Time since last request: 0.000016 seconds.
  481. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoScene.unity
  482. artifactKey: Guid(da4db6c21a88243878fecfe160c1be3b) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  483. 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
  484. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  485. ========================================================================
  486. Received Import Request.
  487. Time since last request: 0.000015 seconds.
  488. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/Prefabs/AR Feathered Plane.prefab
  489. artifactKey: Guid(a6b7ca1d53c75490595d1f0d5f43be38) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  490. 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
  491. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 11
  492. ========================================================================
  493. Received Import Request.
  494. Time since last request: 0.000016 seconds.
  495. path: Assets/MobileARTemplateAssets/UI/Sprites/Icon-Gesture_TouchTwoFinger.png
  496. artifactKey: Guid(bef7dbc4d02bf479fbc01527842a7201) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  497. Start importing Assets/MobileARTemplateAssets/UI/Sprites/Icon-Gesture_TouchTwoFinger.png using Guid(bef7dbc4d02bf479fbc01527842a7201) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '4189fd9ed6b7cca15a95614ef95bea71') in 0.0108294 seconds
  498. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  499. ========================================================================
  500. Received Import Request.
  501. Time since last request: 0.000018 seconds.
  502. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx
  503. artifactKey: Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  504. 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
  505. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
  506. ========================================================================
  507. Received Import Request.
  508. Time since last request: 0.000029 seconds.
  509. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Shaders/Unlit_Fresnel.shadergraph
  510. artifactKey: Guid(e19b5bb6cb8e91e43b1b5d81a069296f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  511. 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
  512. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 6
  513. ========================================================================
  514. Received Import Request.
  515. Time since last request: 0.000016 seconds.
  516. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ObjectSpawner.cs
  517. artifactKey: Guid(956dd6cf70eaca449a45b6a95b96c8c1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  518. 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
  519. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  520. ========================================================================
  521. Received Import Request.
  522. Time since last request: 0.000016 seconds.
  523. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Permissions Manager.prefab
  524. artifactKey: Guid(faf53399145e13c4b992b14c97b5f4c0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  525. 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
  526. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 5
  527. ========================================================================
  528. Received Import Request.
  529. Time since last request: 0.000026 seconds.
  530. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Presets/XRI Default Right Controller InputActionManager.preset
  531. artifactKey: Guid(55f7614a1d331d14bb631965514937d8) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  532. 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
  533. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 8
  534. ========================================================================
  535. Received Import Request.
  536. Time since last request: 0.000013 seconds.
  537. path: Assets/TextMesh Pro/Shaders/TMP_Sprite.shader
  538. artifactKey: Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  539. Start importing Assets/TextMesh Pro/Shaders/TMP_Sprite.shader using Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'dc5db45e103ea01dec6a32d908533b6d') in 0.0077571 seconds
  540. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  541. ========================================================================
  542. Received Import Request.
  543. Time since last request: 0.000015 seconds.
  544. path: Assets/MobileARTemplateAssets/Materials/Concrete_Normal.tif
  545. artifactKey: Guid(ac1389e5bfca4384da60ced0c25f4a68) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  546. Start importing Assets/MobileARTemplateAssets/Materials/Concrete_Normal.tif using Guid(ac1389e5bfca4384da60ced0c25f4a68) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '5c2cad0b89902dc118da0533a0e9ec8c') in 0.0109492 seconds
  547. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  548. ========================================================================
  549. Received Import Request.
  550. Time since last request: 0.000016 seconds.
  551. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Create.png
  552. artifactKey: Guid(7ec65d81ee53b4a76babde6fa254b6e1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  553. 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
  554. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  555. ========================================================================
  556. Received Import Request.
  557. Time since last request: 0.000013 seconds.
  558. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Materials/MaterialPipelineHandler.asset
  559. artifactKey: Guid(1ba0d5cbd551dbf428dc68d0d58ae939) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  560. 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
  561. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  562. ========================================================================
  563. Received Import Request.
  564. Time since last request: 0.000013 seconds.
  565. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/AffordanceThemes/InteractionColor.asset
  566. artifactKey: Guid(3ec238cb3e80e274c844d7b56f585392) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  567. 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
  568. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  569. ========================================================================
  570. Received Import Request.
  571. Time since last request: 0.000022 seconds.
  572. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Prefabs/Debug Cube.prefab
  573. artifactKey: Guid(cec25213e5ba74da1ae7d3e2036e000d) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  574. 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
  575. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 42
  576. ========================================================================
  577. Received Import Request.
  578. Time since last request: 0.000013 seconds.
  579. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Sprites/Icon - Object - Wedge.png
  580. artifactKey: Guid(27d12ab07620b42e1b6f840310624d58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  581. 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
  582. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  583. ========================================================================
  584. Received Import Request.
  585. Time since last request: 0.000013 seconds.
  586. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cylinder.fbx
  587. artifactKey: Guid(303858b05cdc2474d9cc45c585ccc058) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  588. 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
  589. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
  590. ========================================================================
  591. Received Import Request.
  592. Time since last request: 0.000016 seconds.
  593. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Textures/ConcreteNormal.tif
  594. artifactKey: Guid(1dce72fffd0af44ad8e9cdd61d9fc604) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  595. 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
  596. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  597. ========================================================================
  598. Received Import Request.
  599. Time since last request: 0.000013 seconds.
  600. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Arch.fbx
  601. artifactKey: Guid(1b1d3fffb2c30434b903b78194cc0997) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  602. 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
  603. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
  604. ========================================================================
  605. Received Import Request.
  606. Time since last request: 0.000014 seconds.
  607. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Scripts/ARSampleMenuManager.cs
  608. artifactKey: Guid(e06e5c0df3a5b4f53b5d4250256f14d1) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  609. 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
  610. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  611. ========================================================================
  612. Received Import Request.
  613. Time since last request: 0.000023 seconds.
  614. path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader
  615. artifactKey: Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  616. Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader using Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '87944eed4791b4c94e84162930530997') in 0.0087465 seconds
  617. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  618. ========================================================================
  619. Received Import Request.
  620. Time since last request: 0.000015 seconds.
  621. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Cube_Debug.fbx
  622. artifactKey: Guid(f396e3429a4864fc2ad497cb3ce5fe2c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  623. 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
  624. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 25
  625. ========================================================================
  626. Received Import Request.
  627. Time since last request: 0.000013 seconds.
  628. path: Assets/MobileARTemplateAssets/UI/Animation/Prompt_MoveObject.controller
  629. artifactKey: Guid(c6856fc029df4474a8aa6f22b6c8613f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  630. Start importing Assets/MobileARTemplateAssets/UI/Animation/Prompt_MoveObject.controller using Guid(c6856fc029df4474a8aa6f22b6c8613f) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '9332d6ae17f55e28652744e378076ab1') in 0.0088064 seconds
  631. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 4
  632. ========================================================================
  633. Received Import Request.
  634. Time since last request: 0.000014 seconds.
  635. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Poke Interactions Sample.prefab
  636. artifactKey: Guid(88246f8e9c3765d49be8da34eca3c630) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  637. 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
  638. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 108
  639. ========================================================================
  640. Received Import Request.
  641. Time since last request: 0.000016 seconds.
  642. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Round Radius 4 Outline.png
  643. artifactKey: Guid(b7bad1260586fa746a0b67e930892936) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  644. 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
  645. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  646. ========================================================================
  647. Received Import Request.
  648. Time since last request: 0.000017 seconds.
  649. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx
  650. artifactKey: Guid(46c1c422ff6897f49a404b012dc924d3) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  651. 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
  652. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 9
  653. ========================================================================
  654. Received Import Request.
  655. Time since last request: 0.000020 seconds.
  656. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Settings/TeleportDestinationSettings.asset
  657. artifactKey: Guid(8d66c9762e1587643a1164368c8a2c58) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  658. 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
  659. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
  660. ========================================================================
  661. Received Import Request.
  662. Time since last request: 0.000013 seconds.
  663. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/Climb Sample.prefab
  664. artifactKey: Guid(2ea572d587ee60f44bd5baa3bc2d6503) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  665. 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
  666. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 792
  667. ========================================================================
  668. Received Import Request.
  669. Time since last request: 0.000017 seconds.
  670. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Teleport Interactor.prefab
  671. artifactKey: Guid(c1800acf6366418a9b5f610249000331) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  672. 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
  673. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 38
  674. ========================================================================
  675. Received Import Request.
  676. Time since last request: 0.000017 seconds.
  677. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Climb/ClimbTeleportReticle.prefab
  678. artifactKey: Guid(6eb816e9b7ce30f4cadff3d4ad7ad10c) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  679. 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
  680. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 40
  681. ========================================================================
  682. Received Import Request.
  683. Time since last request: 0.000026 seconds.
  684. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Scroll UI Sample.prefab
  685. artifactKey: Guid(0cbc0856f0fb8d84a81be5dea463c369) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  686. 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
  687. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 72
  688. ========================================================================
  689. Received Import Request.
  690. Time since last request: 0.000016 seconds.
  691. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/MinMaxSlider.prefab
  692. artifactKey: Guid(657321a07c3561043af55547ec4b0ed7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  693. 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
  694. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 26
  695. ========================================================================
  696. Received Import Request.
  697. Time since last request: 0.000016 seconds.
  698. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/UI/Icon Toggle.prefab
  699. artifactKey: Guid(541ed11e270c6994ca5910042c7e04da) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  700. 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
  701. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 21
  702. ========================================================================
  703. Received Import Request.
  704. Time since last request: 0.000014 seconds.
  705. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Sprites/Forward.png
  706. artifactKey: Guid(f8ecc54972abacc46a93f671b0602139) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  707. 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
  708. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  709. ========================================================================
  710. Received Import Request.
  711. Time since last request: 0.000015 seconds.
  712. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Prefabs/Interactors/Ray Interactor.prefab
  713. artifactKey: Guid(ad818c36731146e994540a1896ad8f24) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  714. 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
  715. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 10
  716. ========================================================================
  717. Received Import Request.
  718. Time since last request: 0.000016 seconds.
  719. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Far Grab Samples.prefab
  720. artifactKey: Guid(f5ee409d69254d64da7a3b74d31a5a40) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  721. 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
  722. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 84
  723. ========================================================================
  724. Received Import Request.
  725. Time since last request: 0.000026 seconds.
  726. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Prefabs/Teleportation Environment.prefab
  727. artifactKey: Guid(3e07eccb5e6f459d886de95044adb1d9) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  728. 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
  729. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 103
  730. ========================================================================
  731. Received Import Request.
  732. Time since last request: 0.000016 seconds.
  733. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Scripts/ToggleColorToggler.cs
  734. artifactKey: Guid(cb280e627cedda749b93045b8dd8d327) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  735. 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
  736. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  737. ========================================================================
  738. Received Import Request.
  739. Time since last request: 0.000016 seconds.
  740. path: Assets/Settings/UniversalRenderPipelineGlobalSettings.asset
  741. artifactKey: Guid(18dc0cd2c080841dea60987a38ce93fa) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  742. Start importing Assets/Settings/UniversalRenderPipelineGlobalSettings.asset using Guid(18dc0cd2c080841dea60987a38ce93fa) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '97db2bbe38a81759aa396ebf941ce6aa') in 0.0659032 seconds
  743. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  744. ========================================================================
  745. Received Import Request.
  746. Time since last request: 0.000016 seconds.
  747. path: Assets/MobileARTemplateAssets/Tutorial/Images/ARMobileThumbnailLarge.png
  748. artifactKey: Guid(cf19c6d5e0c0d4440acf6ef0d681f721) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  749. Start importing Assets/MobileARTemplateAssets/Tutorial/Images/ARMobileThumbnailLarge.png using Guid(cf19c6d5e0c0d4440acf6ef0d681f721) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'a41572fba5e13b0f7bea84812ec4689a') in 0.013338 seconds
  750. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  751. ========================================================================
  752. Received Import Request.
  753. Time since last request: 0.000017 seconds.
  754. path: Assets/XR/UserSimulationSettings/SimulationEnvironmentAssetsManager.asset
  755. artifactKey: Guid(5135c822e9b1a427ea0f817d7e0343a7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  756. Start importing Assets/XR/UserSimulationSettings/SimulationEnvironmentAssetsManager.asset using Guid(5135c822e9b1a427ea0f817d7e0343a7) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: 'b76f56b335028f849a7b18d3653ee319') in 0.0087619 seconds
  757. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  758. ========================================================================
  759. Received Import Request.
  760. Time since last request: 0.000023 seconds.
  761. path: Assets/MobileARTemplateAssets/Prefabs/WedgeVariant.prefab
  762. artifactKey: Guid(aaf6326249753074fbc1148303020f26) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  763. Start importing Assets/MobileARTemplateAssets/Prefabs/WedgeVariant.prefab using Guid(aaf6326249753074fbc1148303020f26) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '88b4c092bbda11345ad3ce70e3b55d56') in 0.0140698 seconds
  764. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 49
  765. ========================================================================
  766. Received Import Request.
  767. Time since last request: 0.000019 seconds.
  768. path: Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader
  769. artifactKey: Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  770. Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader using Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '943f49f00cd5d656fb90de8082b93157') in 0.0080476 seconds
  771. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  772. ========================================================================
  773. Received Import Request.
  774. Time since last request: 0.000011 seconds.
  775. path: Assets/MobileARTemplateAssets/UI/Sprites/MixedCorners_1.png
  776. artifactKey: Guid(dbf11d919ae484544b627c4b07dcf6b4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  777. Start importing Assets/MobileARTemplateAssets/UI/Sprites/MixedCorners_1.png using Guid(dbf11d919ae484544b627c4b07dcf6b4) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '386e00e611009c61e4b75b80b02d0083') in 0.0104893 seconds
  778. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 3
  779. ========================================================================
  780. Received Import Request.
  781. Time since last request: 0.000013 seconds.
  782. path: Assets/MobileARTemplateAssets/Tutorial/TutorialWelcomePage.asset
  783. artifactKey: Guid(372cd04c6abd79145a59a935c886b287) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d)
  784. Start importing Assets/MobileARTemplateAssets/Tutorial/TutorialWelcomePage.asset using Guid(372cd04c6abd79145a59a935c886b287) Importer(2089858483,b0f066a214c2f5e87bad3c948f4d605d) (ScriptedImporter) -> (artifact id: '8416715e1cfe1f169ae11a8427f3520e') in 0.0208222 seconds
  785. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 2
  786. ========================================================================
  787. Received Prepare
  788. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  789. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  790. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  791. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  792. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  793. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  794. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  795. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  796. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  797. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  798. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  799. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  800. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  801. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  802. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  803. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  804. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  805. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  806. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  807. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  808. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  809. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  810. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  811. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  812. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  813. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  814. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  815. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  816. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  817. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  818. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  819. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  820. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  821. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  822. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  823. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  824. Refreshing native plugins compatible for Editor in 2.01 ms, found 1 plugins.
  825. Preloading 0 native plugins for Editor in 0.00 ms.
  826. Unloading 26 Unused Serialized files (Serialized files now loaded: 0)
  827. Unloading 5984 unused Assets / (7.6 MB). Loaded Objects now: 6835.
  828. Memory consumption went from 159.4 MB to 151.8 MB.
  829. Total: 15.115800 ms (FindLiveObjects: 1.028900 ms CreateObjectMapping: 0.955600 ms MarkObjects: 8.233200 ms DeleteObjects: 4.897200 ms)
  830. Prepare: number of updated asset objects reloaded= 0
  831. ========================================================================
  832. Received Prepare
  833. Begin MonoManager ReloadAssembly
  834. - Loaded All Assemblies, in 0.627 seconds
  835. Refreshing native plugins compatible for Editor in 1.01 ms, found 1 plugins.
  836. Native extension for Android target not found
  837. Native extension for WindowsStandalone target not found
  838. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  839. [Package Manager] Unable to send message (not connected to server process).
  840. [Package Manager] Cannot connect to Unity Package Manager local server
  841. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  842. [Package Manager] Unable to send message (not connected to server process).
  843. [Package Manager] Cannot connect to Unity Package Manager local server
  844. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  845. Mono: successfully reloaded assembly
  846. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  847. [Package Manager] Unable to send message (not connected to server process).
  848. [Package Manager] Cannot connect to Unity Package Manager local server
  849. - Finished resetting the current domain, in 0.596 seconds
  850. Domain Reload Profiling: 1224ms
  851. BeginReloadAssembly (205ms)
  852. ExecutionOrderSort (0ms)
  853. DisableScriptedObjects (5ms)
  854. BackupInstance (0ms)
  855. ReleaseScriptingObjects (0ms)
  856. CreateAndSetChildDomain (64ms)
  857. RebuildCommonClasses (35ms)
  858. RebuildNativeTypeToScriptingClass (13ms)
  859. initialDomainReloadingComplete (26ms)
  860. LoadAllAssembliesAndSetupDomain (348ms)
  861. LoadAssemblies (245ms)
  862. RebuildTransferFunctionScriptingTraits (0ms)
  863. AnalyzeDomain (184ms)
  864. TypeCache.Refresh (10ms)
  865. TypeCache.ScanAssembly (1ms)
  866. BuildScriptInfoCaches (156ms)
  867. ResolveRequiredComponents (14ms)
  868. FinalizeReload (596ms)
  869. ReleaseScriptCaches (0ms)
  870. RebuildScriptCaches (0ms)
  871. SetupLoadedEditorAssemblies (456ms)
  872. LogAssemblyErrors (0ms)
  873. InitializePlatformSupportModulesInManaged (6ms)
  874. SetLoadedEditorAssemblies (3ms)
  875. BeforeProcessingInitializeOnLoad (101ms)
  876. ProcessInitializeOnLoadAttributes (267ms)
  877. ProcessInitializeOnLoadMethodAttributes (70ms)
  878. AfterProcessingInitializeOnLoad (8ms)
  879. EditorAssembliesLoaded (0ms)
  880. ExecutionOrderSort2 (0ms)
  881. AwakeInstancesAfterBackupRestoration (17ms)
  882. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  883. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  884. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  885. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  886. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  887. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  888. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  889. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  890. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  891. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  892. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  893. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  894. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  895. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  896. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  897. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  898. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  899. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  900. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  901. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  902. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  903. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  904. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  905. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  906. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  907. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  908. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  909. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  910. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  911. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  912. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  913. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  914. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  915. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  916. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  917. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  918. Refreshing native plugins compatible for Editor in 1.75 ms, found 1 plugins.
  919. Preloading 0 native plugins for Editor in 0.00 ms.
  920. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  921. Unloading 6006 unused Assets / (10.6 MB). Loaded Objects now: 6855.
  922. Memory consumption went from 215.9 MB to 205.3 MB.
  923. Total: 13.065900 ms (FindLiveObjects: 0.826700 ms CreateObjectMapping: 0.645000 ms MarkObjects: 5.460600 ms DeleteObjects: 6.132900 ms)
  924. Prepare: number of updated asset objects reloaded= 0
  925. ========================================================================
  926. Received Prepare
  927. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  928. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  929. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  930. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  931. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  932. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  933. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  934. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  935. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  936. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  937. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  938. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  939. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  940. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  941. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  942. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  943. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  944. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  945. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  946. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  947. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  948. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  949. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  950. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  951. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  952. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  953. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  954. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  955. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  956. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  957. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  958. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  959. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  960. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  961. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  962. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  963. Refreshing native plugins compatible for Editor in 1.55 ms, found 1 plugins.
  964. Preloading 0 native plugins for Editor in 0.00 ms.
  965. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  966. Unloading 5979 unused Assets / (7.2 MB). Loaded Objects now: 6849.
  967. Memory consumption went from 189.0 MB to 181.8 MB.
  968. Total: 15.250100 ms (FindLiveObjects: 1.232500 ms CreateObjectMapping: 1.214300 ms MarkObjects: 7.643500 ms DeleteObjects: 5.159100 ms)
  969. Prepare: number of updated asset objects reloaded= 0
  970. ========================================================================
  971. Received Import Request.
  972. Time since last request: 59.516489 seconds.
  973. path: Assets/FaceRaiders/Scripts/GameManager.cs
  974. artifactKey: Guid(703b2d589e1d3594984fc6b72defee16) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  975. Start importing Assets/FaceRaiders/Scripts/GameManager.cs using Guid(703b2d589e1d3594984fc6b72defee16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '39b06ddea42617ac71aeb7e00e307eae') in 0.0288378 seconds
  976. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  977. ========================================================================
  978. Received Prepare
  979. Begin MonoManager ReloadAssembly
  980. [Licensing::Client] Successfully resolved entitlement details
  981. - Loaded All Assemblies, in 0.576 seconds
  982. Refreshing native plugins compatible for Editor in 1.51 ms, found 1 plugins.
  983. Native extension for Android target not found
  984. Native extension for WindowsStandalone target not found
  985. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  986. [Package Manager] Unable to send message (not connected to server process).
  987. [Package Manager] Cannot connect to Unity Package Manager local server
  988. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  989. [Package Manager] Unable to send message (not connected to server process).
  990. [Package Manager] Cannot connect to Unity Package Manager local server
  991. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  992. Mono: successfully reloaded assembly
  993. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  994. [Package Manager] Unable to send message (not connected to server process).
  995. [Package Manager] Cannot connect to Unity Package Manager local server
  996. - Finished resetting the current domain, in 0.551 seconds
  997. Domain Reload Profiling: 1128ms
  998. BeginReloadAssembly (168ms)
  999. ExecutionOrderSort (0ms)
  1000. DisableScriptedObjects (6ms)
  1001. BackupInstance (0ms)
  1002. ReleaseScriptingObjects (0ms)
  1003. CreateAndSetChildDomain (39ms)
  1004. RebuildCommonClasses (28ms)
  1005. RebuildNativeTypeToScriptingClass (12ms)
  1006. initialDomainReloadingComplete (20ms)
  1007. LoadAllAssembliesAndSetupDomain (348ms)
  1008. LoadAssemblies (223ms)
  1009. RebuildTransferFunctionScriptingTraits (0ms)
  1010. AnalyzeDomain (197ms)
  1011. TypeCache.Refresh (11ms)
  1012. TypeCache.ScanAssembly (1ms)
  1013. BuildScriptInfoCaches (168ms)
  1014. ResolveRequiredComponents (13ms)
  1015. FinalizeReload (551ms)
  1016. ReleaseScriptCaches (0ms)
  1017. RebuildScriptCaches (0ms)
  1018. SetupLoadedEditorAssemblies (408ms)
  1019. LogAssemblyErrors (0ms)
  1020. InitializePlatformSupportModulesInManaged (6ms)
  1021. SetLoadedEditorAssemblies (3ms)
  1022. BeforeProcessingInitializeOnLoad (100ms)
  1023. ProcessInitializeOnLoadAttributes (226ms)
  1024. ProcessInitializeOnLoadMethodAttributes (68ms)
  1025. AfterProcessingInitializeOnLoad (6ms)
  1026. EditorAssembliesLoaded (0ms)
  1027. ExecutionOrderSort2 (0ms)
  1028. AwakeInstancesAfterBackupRestoration (12ms)
  1029. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1030. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1031. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1032. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1033. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1034. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1035. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1036. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1037. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1038. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1039. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1040. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1041. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1042. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1043. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1044. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1045. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1046. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1047. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1048. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1049. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1050. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1051. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1052. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1053. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1054. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1055. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1056. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1057. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1058. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1059. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1060. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1061. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1062. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1063. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1064. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1065. Refreshing native plugins compatible for Editor in 1.86 ms, found 1 plugins.
  1066. Preloading 0 native plugins for Editor in 0.00 ms.
  1067. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1068. Unloading 6006 unused Assets / (10.6 MB). Loaded Objects now: 6857.
  1069. Memory consumption went from 215.8 MB to 205.3 MB.
  1070. Total: 12.637400 ms (FindLiveObjects: 1.122400 ms CreateObjectMapping: 0.988100 ms MarkObjects: 5.885400 ms DeleteObjects: 4.640500 ms)
  1071. Prepare: number of updated asset objects reloaded= 0
  1072. ========================================================================
  1073. Received Prepare
  1074. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1075. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1076. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1077. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1078. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1079. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1080. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1081. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1082. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1083. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1084. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1085. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1086. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1087. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1088. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1089. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1090. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1091. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1092. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1093. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1094. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1095. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1096. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1097. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1098. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1099. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1100. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1101. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1102. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1103. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1104. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1105. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1106. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1107. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1108. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1109. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1110. Refreshing native plugins compatible for Editor in 1.71 ms, found 1 plugins.
  1111. Preloading 0 native plugins for Editor in 0.00 ms.
  1112. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1113. Unloading 5979 unused Assets / (8.1 MB). Loaded Objects now: 6851.
  1114. Memory consumption went from 189.1 MB to 181.0 MB.
  1115. Total: 11.570800 ms (FindLiveObjects: 1.032700 ms CreateObjectMapping: 0.591200 ms MarkObjects: 5.581300 ms DeleteObjects: 4.364900 ms)
  1116. Prepare: number of updated asset objects reloaded= 0
  1117. ========================================================================
  1118. Received Prepare
  1119. Begin MonoManager ReloadAssembly
  1120. - Loaded All Assemblies, in 0.623 seconds
  1121. Refreshing native plugins compatible for Editor in 1.60 ms, found 1 plugins.
  1122. Native extension for Android target not found
  1123. Native extension for WindowsStandalone target not found
  1124. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1125. [Package Manager] Unable to send message (not connected to server process).
  1126. [Package Manager] Cannot connect to Unity Package Manager local server
  1127. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1128. [Package Manager] Unable to send message (not connected to server process).
  1129. [Package Manager] Cannot connect to Unity Package Manager local server
  1130. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1131. Mono: successfully reloaded assembly
  1132. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1133. [Package Manager] Unable to send message (not connected to server process).
  1134. [Package Manager] Cannot connect to Unity Package Manager local server
  1135. - Finished resetting the current domain, in 0.606 seconds
  1136. Domain Reload Profiling: 1229ms
  1137. BeginReloadAssembly (191ms)
  1138. ExecutionOrderSort (0ms)
  1139. DisableScriptedObjects (4ms)
  1140. BackupInstance (0ms)
  1141. ReleaseScriptingObjects (0ms)
  1142. CreateAndSetChildDomain (44ms)
  1143. RebuildCommonClasses (32ms)
  1144. RebuildNativeTypeToScriptingClass (17ms)
  1145. initialDomainReloadingComplete (30ms)
  1146. LoadAllAssembliesAndSetupDomain (353ms)
  1147. LoadAssemblies (258ms)
  1148. RebuildTransferFunctionScriptingTraits (0ms)
  1149. AnalyzeDomain (183ms)
  1150. TypeCache.Refresh (9ms)
  1151. TypeCache.ScanAssembly (1ms)
  1152. BuildScriptInfoCaches (157ms)
  1153. ResolveRequiredComponents (13ms)
  1154. FinalizeReload (607ms)
  1155. ReleaseScriptCaches (0ms)
  1156. RebuildScriptCaches (0ms)
  1157. SetupLoadedEditorAssemblies (444ms)
  1158. LogAssemblyErrors (0ms)
  1159. InitializePlatformSupportModulesInManaged (8ms)
  1160. SetLoadedEditorAssemblies (3ms)
  1161. BeforeProcessingInitializeOnLoad (108ms)
  1162. ProcessInitializeOnLoadAttributes (243ms)
  1163. ProcessInitializeOnLoadMethodAttributes (72ms)
  1164. AfterProcessingInitializeOnLoad (9ms)
  1165. EditorAssembliesLoaded (0ms)
  1166. ExecutionOrderSort2 (0ms)
  1167. AwakeInstancesAfterBackupRestoration (16ms)
  1168. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1169. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1170. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1171. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1172. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1173. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1174. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1175. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1176. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1177. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1178. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1179. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1180. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1181. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1182. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1183. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1184. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1185. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1186. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1187. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1188. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1189. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1190. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1191. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1192. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1193. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1194. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1195. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1196. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1197. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1198. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1199. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1200. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1201. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1202. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1203. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1204. Refreshing native plugins compatible for Editor in 1.32 ms, found 1 plugins.
  1205. Preloading 0 native plugins for Editor in 0.00 ms.
  1206. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1207. Unloading 6006 unused Assets / (10.3 MB). Loaded Objects now: 6859.
  1208. Memory consumption went from 215.8 MB to 205.5 MB.
  1209. Total: 10.998100 ms (FindLiveObjects: 1.014700 ms CreateObjectMapping: 0.759200 ms MarkObjects: 5.014200 ms DeleteObjects: 4.209500 ms)
  1210. Prepare: number of updated asset objects reloaded= 0
  1211. ========================================================================
  1212. Received Prepare
  1213. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1214. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1215. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1216. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1217. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1218. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1219. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1220. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1221. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1222. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1223. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1224. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1225. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1226. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1227. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1228. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1229. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1230. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1231. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1232. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1233. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1234. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1235. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1236. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1237. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1238. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1239. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1240. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1241. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1242. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1243. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1244. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1245. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1246. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1247. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1248. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1249. Refreshing native plugins compatible for Editor in 1.50 ms, found 1 plugins.
  1250. Preloading 0 native plugins for Editor in 0.00 ms.
  1251. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1252. Unloading 5979 unused Assets / (8.0 MB). Loaded Objects now: 6853.
  1253. Memory consumption went from 189.2 MB to 181.2 MB.
  1254. Total: 10.425800 ms (FindLiveObjects: 0.985200 ms CreateObjectMapping: 0.380400 ms MarkObjects: 4.708100 ms DeleteObjects: 4.351300 ms)
  1255. Prepare: number of updated asset objects reloaded= 0
  1256. ========================================================================
  1257. Received Prepare
  1258. Begin MonoManager ReloadAssembly
  1259. - Loaded All Assemblies, in 0.630 seconds
  1260. Refreshing native plugins compatible for Editor in 1.83 ms, found 1 plugins.
  1261. Native extension for Android target not found
  1262. Native extension for WindowsStandalone target not found
  1263. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1264. [Package Manager] Unable to send message (not connected to server process).
  1265. [Package Manager] Cannot connect to Unity Package Manager local server
  1266. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1267. [Package Manager] Unable to send message (not connected to server process).
  1268. [Package Manager] Cannot connect to Unity Package Manager local server
  1269. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1270. Mono: successfully reloaded assembly
  1271. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1272. [Package Manager] Unable to send message (not connected to server process).
  1273. [Package Manager] Cannot connect to Unity Package Manager local server
  1274. - Finished resetting the current domain, in 0.647 seconds
  1275. Domain Reload Profiling: 1276ms
  1276. BeginReloadAssembly (190ms)
  1277. ExecutionOrderSort (0ms)
  1278. DisableScriptedObjects (5ms)
  1279. BackupInstance (0ms)
  1280. ReleaseScriptingObjects (0ms)
  1281. CreateAndSetChildDomain (46ms)
  1282. RebuildCommonClasses (43ms)
  1283. RebuildNativeTypeToScriptingClass (17ms)
  1284. initialDomainReloadingComplete (29ms)
  1285. LoadAllAssembliesAndSetupDomain (350ms)
  1286. LoadAssemblies (259ms)
  1287. RebuildTransferFunctionScriptingTraits (0ms)
  1288. AnalyzeDomain (176ms)
  1289. TypeCache.Refresh (9ms)
  1290. TypeCache.ScanAssembly (1ms)
  1291. BuildScriptInfoCaches (155ms)
  1292. ResolveRequiredComponents (9ms)
  1293. FinalizeReload (648ms)
  1294. ReleaseScriptCaches (0ms)
  1295. RebuildScriptCaches (0ms)
  1296. SetupLoadedEditorAssemblies (493ms)
  1297. LogAssemblyErrors (0ms)
  1298. InitializePlatformSupportModulesInManaged (8ms)
  1299. SetLoadedEditorAssemblies (3ms)
  1300. BeforeProcessingInitializeOnLoad (133ms)
  1301. ProcessInitializeOnLoadAttributes (270ms)
  1302. ProcessInitializeOnLoadMethodAttributes (73ms)
  1303. AfterProcessingInitializeOnLoad (6ms)
  1304. EditorAssembliesLoaded (0ms)
  1305. ExecutionOrderSort2 (0ms)
  1306. AwakeInstancesAfterBackupRestoration (12ms)
  1307. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1308. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1309. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1310. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1311. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1312. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1313. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1314. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1315. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1316. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1317. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1318. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1319. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1320. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1321. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1322. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1323. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1324. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1325. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1326. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1327. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1328. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1329. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1330. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1331. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1332. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1333. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1334. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1335. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1336. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1337. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1338. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1339. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1340. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1341. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1342. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1343. Refreshing native plugins compatible for Editor in 1.32 ms, found 1 plugins.
  1344. Preloading 0 native plugins for Editor in 0.00 ms.
  1345. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1346. Unloading 6006 unused Assets / (10.7 MB). Loaded Objects now: 6861.
  1347. Memory consumption went from 216.0 MB to 205.4 MB.
  1348. Total: 12.825900 ms (FindLiveObjects: 0.996400 ms CreateObjectMapping: 0.681800 ms MarkObjects: 6.384900 ms DeleteObjects: 4.762000 ms)
  1349. Prepare: number of updated asset objects reloaded= 0
  1350. ========================================================================
  1351. Received Prepare
  1352. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1353. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1354. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1355. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1356. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1357. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1358. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1359. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1360. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1361. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1362. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1363. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1364. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1365. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1366. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1367. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1368. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1369. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1370. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1371. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1372. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1373. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1374. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1375. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1376. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1377. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1378. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1379. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1380. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1381. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1382. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1383. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1384. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1385. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1386. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1387. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1388. Refreshing native plugins compatible for Editor in 2.06 ms, found 1 plugins.
  1389. Preloading 0 native plugins for Editor in 0.00 ms.
  1390. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1391. Unloading 5979 unused Assets / (7.6 MB). Loaded Objects now: 6855.
  1392. Memory consumption went from 189.2 MB to 181.6 MB.
  1393. Total: 14.694800 ms (FindLiveObjects: 1.018600 ms CreateObjectMapping: 0.981900 ms MarkObjects: 7.812500 ms DeleteObjects: 4.880800 ms)
  1394. Prepare: number of updated asset objects reloaded= 0
  1395. ========================================================================
  1396. Received Prepare
  1397. Begin MonoManager ReloadAssembly
  1398. [Licensing::Client] Successfully resolved entitlement details
  1399. - Loaded All Assemblies, in 0.595 seconds
  1400. Refreshing native plugins compatible for Editor in 1.33 ms, found 1 plugins.
  1401. Native extension for Android target not found
  1402. Native extension for WindowsStandalone target not found
  1403. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1404. [Package Manager] Unable to send message (not connected to server process).
  1405. [Package Manager] Cannot connect to Unity Package Manager local server
  1406. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1407. [Package Manager] Unable to send message (not connected to server process).
  1408. [Package Manager] Cannot connect to Unity Package Manager local server
  1409. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1410. Mono: successfully reloaded assembly
  1411. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1412. [Package Manager] Unable to send message (not connected to server process).
  1413. [Package Manager] Cannot connect to Unity Package Manager local server
  1414. - Finished resetting the current domain, in 0.631 seconds
  1415. Domain Reload Profiling: 1226ms
  1416. BeginReloadAssembly (174ms)
  1417. ExecutionOrderSort (0ms)
  1418. DisableScriptedObjects (6ms)
  1419. BackupInstance (0ms)
  1420. ReleaseScriptingObjects (0ms)
  1421. CreateAndSetChildDomain (44ms)
  1422. RebuildCommonClasses (29ms)
  1423. RebuildNativeTypeToScriptingClass (12ms)
  1424. initialDomainReloadingComplete (25ms)
  1425. LoadAllAssembliesAndSetupDomain (354ms)
  1426. LoadAssemblies (232ms)
  1427. RebuildTransferFunctionScriptingTraits (0ms)
  1428. AnalyzeDomain (193ms)
  1429. TypeCache.Refresh (7ms)
  1430. TypeCache.ScanAssembly (1ms)
  1431. BuildScriptInfoCaches (168ms)
  1432. ResolveRequiredComponents (13ms)
  1433. FinalizeReload (631ms)
  1434. ReleaseScriptCaches (0ms)
  1435. RebuildScriptCaches (0ms)
  1436. SetupLoadedEditorAssemblies (481ms)
  1437. LogAssemblyErrors (0ms)
  1438. InitializePlatformSupportModulesInManaged (6ms)
  1439. SetLoadedEditorAssemblies (3ms)
  1440. BeforeProcessingInitializeOnLoad (121ms)
  1441. ProcessInitializeOnLoadAttributes (274ms)
  1442. ProcessInitializeOnLoadMethodAttributes (68ms)
  1443. AfterProcessingInitializeOnLoad (9ms)
  1444. EditorAssembliesLoaded (0ms)
  1445. ExecutionOrderSort2 (0ms)
  1446. AwakeInstancesAfterBackupRestoration (17ms)
  1447. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1448. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1449. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1450. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1451. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1452. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1453. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1454. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1455. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1456. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1457. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1458. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1459. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1460. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1461. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1462. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1463. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1464. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1465. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1466. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1467. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1468. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1469. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1470. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1471. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1472. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1473. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1474. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1475. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1476. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1477. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1478. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1479. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1480. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1481. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1482. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1483. Refreshing native plugins compatible for Editor in 1.28 ms, found 1 plugins.
  1484. Preloading 0 native plugins for Editor in 0.00 ms.
  1485. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1486. Unloading 6006 unused Assets / (10.4 MB). Loaded Objects now: 6863.
  1487. Memory consumption went from 216.0 MB to 205.7 MB.
  1488. Total: 11.515100 ms (FindLiveObjects: 1.009500 ms CreateObjectMapping: 0.317900 ms MarkObjects: 5.675300 ms DeleteObjects: 4.511900 ms)
  1489. Prepare: number of updated asset objects reloaded= 0
  1490. ========================================================================
  1491. Received Prepare
  1492. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1493. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1494. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1495. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1496. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1497. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1498. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1499. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1500. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1501. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1502. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1503. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1504. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1505. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1506. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1507. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1508. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1509. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1510. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1511. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1512. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1513. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1514. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1515. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1516. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1517. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1518. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1519. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1520. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1521. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1522. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1523. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1524. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1525. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1526. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1527. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1528. Refreshing native plugins compatible for Editor in 1.80 ms, found 1 plugins.
  1529. Preloading 0 native plugins for Editor in 0.00 ms.
  1530. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1531. Unloading 5979 unused Assets / (7.8 MB). Loaded Objects now: 6857.
  1532. Memory consumption went from 189.3 MB to 181.5 MB.
  1533. Total: 11.417600 ms (FindLiveObjects: 0.655500 ms CreateObjectMapping: 0.644600 ms MarkObjects: 5.822600 ms DeleteObjects: 4.294200 ms)
  1534. Prepare: number of updated asset objects reloaded= 0
  1535. ========================================================================
  1536. Received Prepare
  1537. Begin MonoManager ReloadAssembly
  1538. - Loaded All Assemblies, in 0.642 seconds
  1539. Refreshing native plugins compatible for Editor in 1.41 ms, found 1 plugins.
  1540. Native extension for Android target not found
  1541. Native extension for WindowsStandalone target not found
  1542. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1543. [Package Manager] Unable to send message (not connected to server process).
  1544. [Package Manager] Cannot connect to Unity Package Manager local server
  1545. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1546. [Package Manager] Unable to send message (not connected to server process).
  1547. [Package Manager] Cannot connect to Unity Package Manager local server
  1548. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1549. Mono: successfully reloaded assembly
  1550. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1551. [Package Manager] Unable to send message (not connected to server process).
  1552. [Package Manager] Cannot connect to Unity Package Manager local server
  1553. - Finished resetting the current domain, in 0.625 seconds
  1554. Domain Reload Profiling: 1267ms
  1555. BeginReloadAssembly (180ms)
  1556. ExecutionOrderSort (0ms)
  1557. DisableScriptedObjects (6ms)
  1558. BackupInstance (0ms)
  1559. ReleaseScriptingObjects (0ms)
  1560. CreateAndSetChildDomain (39ms)
  1561. RebuildCommonClasses (46ms)
  1562. RebuildNativeTypeToScriptingClass (17ms)
  1563. initialDomainReloadingComplete (28ms)
  1564. LoadAllAssembliesAndSetupDomain (371ms)
  1565. LoadAssemblies (250ms)
  1566. RebuildTransferFunctionScriptingTraits (0ms)
  1567. AnalyzeDomain (200ms)
  1568. TypeCache.Refresh (10ms)
  1569. TypeCache.ScanAssembly (1ms)
  1570. BuildScriptInfoCaches (173ms)
  1571. ResolveRequiredComponents (12ms)
  1572. FinalizeReload (625ms)
  1573. ReleaseScriptCaches (0ms)
  1574. RebuildScriptCaches (0ms)
  1575. SetupLoadedEditorAssemblies (481ms)
  1576. LogAssemblyErrors (0ms)
  1577. InitializePlatformSupportModulesInManaged (8ms)
  1578. SetLoadedEditorAssemblies (4ms)
  1579. BeforeProcessingInitializeOnLoad (119ms)
  1580. ProcessInitializeOnLoadAttributes (276ms)
  1581. ProcessInitializeOnLoadMethodAttributes (68ms)
  1582. AfterProcessingInitializeOnLoad (6ms)
  1583. EditorAssembliesLoaded (0ms)
  1584. ExecutionOrderSort2 (0ms)
  1585. AwakeInstancesAfterBackupRestoration (11ms)
  1586. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1587. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1588. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1589. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1590. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1591. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1592. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1593. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1594. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1595. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1596. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1597. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1598. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1599. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1600. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1601. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1602. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1603. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1604. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1605. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1606. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1607. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1608. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1609. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1610. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1611. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1612. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1613. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1614. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1615. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1616. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1617. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1618. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1619. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1620. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1621. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1622. Refreshing native plugins compatible for Editor in 1.46 ms, found 1 plugins.
  1623. Preloading 0 native plugins for Editor in 0.00 ms.
  1624. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1625. Unloading 6006 unused Assets / (10.2 MB). Loaded Objects now: 6865.
  1626. Memory consumption went from 216.1 MB to 205.9 MB.
  1627. Total: 10.563800 ms (FindLiveObjects: 0.784000 ms CreateObjectMapping: 0.294400 ms MarkObjects: 4.908900 ms DeleteObjects: 4.575900 ms)
  1628. Prepare: number of updated asset objects reloaded= 0
  1629. ========================================================================
  1630. Received Prepare
  1631. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1632. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1633. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1634. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1635. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1636. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1637. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1638. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1639. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1640. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1641. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1642. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1643. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1644. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1645. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1646. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1647. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1648. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1649. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1650. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1651. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1652. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1653. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1654. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1655. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1656. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1657. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1658. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1659. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1660. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1661. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1662. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1663. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1664. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1665. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1666. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1667. Refreshing native plugins compatible for Editor in 2.33 ms, found 1 plugins.
  1668. Preloading 0 native plugins for Editor in 0.00 ms.
  1669. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1670. Unloading 5979 unused Assets / (7.9 MB). Loaded Objects now: 6859.
  1671. Memory consumption went from 189.3 MB to 181.5 MB.
  1672. Total: 10.656200 ms (FindLiveObjects: 0.923600 ms CreateObjectMapping: 0.309600 ms MarkObjects: 4.956800 ms DeleteObjects: 4.465400 ms)
  1673. Prepare: number of updated asset objects reloaded= 0
  1674. ========================================================================
  1675. Received Prepare
  1676. Begin MonoManager ReloadAssembly
  1677. - Loaded All Assemblies, in 0.635 seconds
  1678. Refreshing native plugins compatible for Editor in 1.65 ms, found 1 plugins.
  1679. Native extension for Android target not found
  1680. Native extension for WindowsStandalone target not found
  1681. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1682. [Package Manager] Unable to send message (not connected to server process).
  1683. [Package Manager] Cannot connect to Unity Package Manager local server
  1684. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1685. [Package Manager] Unable to send message (not connected to server process).
  1686. [Package Manager] Cannot connect to Unity Package Manager local server
  1687. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1688. Mono: successfully reloaded assembly
  1689. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1690. [Package Manager] Unable to send message (not connected to server process).
  1691. [Package Manager] Cannot connect to Unity Package Manager local server
  1692. - Finished resetting the current domain, in 0.635 seconds
  1693. Domain Reload Profiling: 1270ms
  1694. BeginReloadAssembly (187ms)
  1695. ExecutionOrderSort (0ms)
  1696. DisableScriptedObjects (6ms)
  1697. BackupInstance (0ms)
  1698. ReleaseScriptingObjects (0ms)
  1699. CreateAndSetChildDomain (41ms)
  1700. RebuildCommonClasses (43ms)
  1701. RebuildNativeTypeToScriptingClass (15ms)
  1702. initialDomainReloadingComplete (28ms)
  1703. LoadAllAssembliesAndSetupDomain (362ms)
  1704. LoadAssemblies (260ms)
  1705. RebuildTransferFunctionScriptingTraits (0ms)
  1706. AnalyzeDomain (195ms)
  1707. TypeCache.Refresh (10ms)
  1708. TypeCache.ScanAssembly (1ms)
  1709. BuildScriptInfoCaches (169ms)
  1710. ResolveRequiredComponents (12ms)
  1711. FinalizeReload (635ms)
  1712. ReleaseScriptCaches (0ms)
  1713. RebuildScriptCaches (0ms)
  1714. SetupLoadedEditorAssemblies (481ms)
  1715. LogAssemblyErrors (0ms)
  1716. InitializePlatformSupportModulesInManaged (7ms)
  1717. SetLoadedEditorAssemblies (3ms)
  1718. BeforeProcessingInitializeOnLoad (127ms)
  1719. ProcessInitializeOnLoadAttributes (269ms)
  1720. ProcessInitializeOnLoadMethodAttributes (66ms)
  1721. AfterProcessingInitializeOnLoad (8ms)
  1722. EditorAssembliesLoaded (0ms)
  1723. ExecutionOrderSort2 (0ms)
  1724. AwakeInstancesAfterBackupRestoration (12ms)
  1725. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1726. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1727. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1728. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1729. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1730. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1731. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1732. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1733. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1734. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1735. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1736. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1737. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1738. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1739. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1740. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1741. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1742. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1743. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1744. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1745. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1746. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1747. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1748. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1749. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1750. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1751. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1752. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1753. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1754. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1755. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1756. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1757. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1758. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1759. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1760. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1761. Refreshing native plugins compatible for Editor in 1.85 ms, found 1 plugins.
  1762. Preloading 0 native plugins for Editor in 0.00 ms.
  1763. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1764. Unloading 6006 unused Assets / (10.4 MB). Loaded Objects now: 6867.
  1765. Memory consumption went from 216.1 MB to 205.6 MB.
  1766. Total: 9.968900 ms (FindLiveObjects: 0.723100 ms CreateObjectMapping: 0.467400 ms MarkObjects: 4.544500 ms DeleteObjects: 4.233400 ms)
  1767. Prepare: number of updated asset objects reloaded= 0
  1768. ========================================================================
  1769. Received Prepare
  1770. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1771. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1772. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1773. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1774. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1775. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1776. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1777. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1778. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1779. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1780. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1781. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1782. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1783. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1784. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1785. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1786. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1787. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1788. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1789. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1790. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1791. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1792. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1793. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1794. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1795. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1796. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1797. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1798. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1799. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1800. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1801. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1802. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1803. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1804. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1805. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1806. Refreshing native plugins compatible for Editor in 1.61 ms, found 1 plugins.
  1807. Preloading 0 native plugins for Editor in 0.00 ms.
  1808. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1809. Unloading 5979 unused Assets / (8.1 MB). Loaded Objects now: 6861.
  1810. Memory consumption went from 189.4 MB to 181.4 MB.
  1811. Total: 12.007500 ms (FindLiveObjects: 1.040000 ms CreateObjectMapping: 0.613000 ms MarkObjects: 5.210900 ms DeleteObjects: 5.142800 ms)
  1812. Prepare: number of updated asset objects reloaded= 0
  1813. ========================================================================
  1814. Received Prepare
  1815. Begin MonoManager ReloadAssembly
  1816. [Licensing::Client] Successfully resolved entitlement details
  1817. - Loaded All Assemblies, in 0.657 seconds
  1818. Refreshing native plugins compatible for Editor in 1.87 ms, found 1 plugins.
  1819. Native extension for Android target not found
  1820. Native extension for WindowsStandalone target not found
  1821. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1822. [Package Manager] Unable to send message (not connected to server process).
  1823. [Package Manager] Cannot connect to Unity Package Manager local server
  1824. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1825. [Package Manager] Unable to send message (not connected to server process).
  1826. [Package Manager] Cannot connect to Unity Package Manager local server
  1827. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1828. Mono: successfully reloaded assembly
  1829. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1830. [Package Manager] Unable to send message (not connected to server process).
  1831. [Package Manager] Cannot connect to Unity Package Manager local server
  1832. - Finished resetting the current domain, in 0.632 seconds
  1833. Domain Reload Profiling: 1287ms
  1834. BeginReloadAssembly (193ms)
  1835. ExecutionOrderSort (0ms)
  1836. DisableScriptedObjects (5ms)
  1837. BackupInstance (0ms)
  1838. ReleaseScriptingObjects (1ms)
  1839. CreateAndSetChildDomain (50ms)
  1840. RebuildCommonClasses (35ms)
  1841. RebuildNativeTypeToScriptingClass (17ms)
  1842. initialDomainReloadingComplete (33ms)
  1843. LoadAllAssembliesAndSetupDomain (377ms)
  1844. LoadAssemblies (258ms)
  1845. RebuildTransferFunctionScriptingTraits (0ms)
  1846. AnalyzeDomain (198ms)
  1847. TypeCache.Refresh (10ms)
  1848. TypeCache.ScanAssembly (1ms)
  1849. BuildScriptInfoCaches (171ms)
  1850. ResolveRequiredComponents (13ms)
  1851. FinalizeReload (632ms)
  1852. ReleaseScriptCaches (0ms)
  1853. RebuildScriptCaches (0ms)
  1854. SetupLoadedEditorAssemblies (484ms)
  1855. LogAssemblyErrors (0ms)
  1856. InitializePlatformSupportModulesInManaged (8ms)
  1857. SetLoadedEditorAssemblies (4ms)
  1858. BeforeProcessingInitializeOnLoad (126ms)
  1859. ProcessInitializeOnLoadAttributes (267ms)
  1860. ProcessInitializeOnLoadMethodAttributes (72ms)
  1861. AfterProcessingInitializeOnLoad (7ms)
  1862. EditorAssembliesLoaded (0ms)
  1863. ExecutionOrderSort2 (0ms)
  1864. AwakeInstancesAfterBackupRestoration (14ms)
  1865. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1866. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1867. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1868. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1869. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1870. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1871. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1872. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1873. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1874. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1875. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1876. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1877. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1878. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1879. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1880. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1881. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1882. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1883. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1884. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1885. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1886. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1887. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1888. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1889. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1890. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1891. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1892. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1893. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1894. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1895. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1896. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1897. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1898. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1899. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1900. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1901. Refreshing native plugins compatible for Editor in 1.07 ms, found 1 plugins.
  1902. Preloading 0 native plugins for Editor in 0.00 ms.
  1903. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1904. Unloading 6006 unused Assets / (10.2 MB). Loaded Objects now: 6869.
  1905. Memory consumption went from 216.2 MB to 206.0 MB.
  1906. Total: 11.357100 ms (FindLiveObjects: 1.043600 ms CreateObjectMapping: 0.522300 ms MarkObjects: 5.381500 ms DeleteObjects: 4.409100 ms)
  1907. Prepare: number of updated asset objects reloaded= 0
  1908. ========================================================================
  1909. Received Prepare
  1910. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1911. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1912. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1913. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  1914. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1915. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1916. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1917. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1918. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1919. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  1920. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1921. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1922. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1923. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1924. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1925. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  1926. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1927. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1928. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1929. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1930. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1931. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  1932. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1933. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1934. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1935. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1936. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1937. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  1938. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1939. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1940. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1941. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1942. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1943. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  1944. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  1945. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  1946. Refreshing native plugins compatible for Editor in 2.05 ms, found 1 plugins.
  1947. Preloading 0 native plugins for Editor in 0.00 ms.
  1948. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  1949. Unloading 5979 unused Assets / (5.2 MB). Loaded Objects now: 6863.
  1950. Memory consumption went from 189.5 MB to 184.3 MB.
  1951. Total: 12.585300 ms (FindLiveObjects: 1.053200 ms CreateObjectMapping: 0.339900 ms MarkObjects: 7.154900 ms DeleteObjects: 4.036300 ms)
  1952. Prepare: number of updated asset objects reloaded= 0
  1953. ========================================================================
  1954. Received Prepare
  1955. Begin MonoManager ReloadAssembly
  1956. - Loaded All Assemblies, in 0.605 seconds
  1957. Refreshing native plugins compatible for Editor in 1.35 ms, found 1 plugins.
  1958. Native extension for Android target not found
  1959. Native extension for WindowsStandalone target not found
  1960. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1961. [Package Manager] Unable to send message (not connected to server process).
  1962. [Package Manager] Cannot connect to Unity Package Manager local server
  1963. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1964. [Package Manager] Unable to send message (not connected to server process).
  1965. [Package Manager] Cannot connect to Unity Package Manager local server
  1966. ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:True
  1967. Mono: successfully reloaded assembly
  1968. [Package Manager] Failed to launch server process. Reason: Unity was launched with the -noUpm command-line argument
  1969. [Package Manager] Unable to send message (not connected to server process).
  1970. [Package Manager] Cannot connect to Unity Package Manager local server
  1971. - Finished resetting the current domain, in 0.627 seconds
  1972. Domain Reload Profiling: 1233ms
  1973. BeginReloadAssembly (170ms)
  1974. ExecutionOrderSort (0ms)
  1975. DisableScriptedObjects (6ms)
  1976. BackupInstance (0ms)
  1977. ReleaseScriptingObjects (0ms)
  1978. CreateAndSetChildDomain (37ms)
  1979. RebuildCommonClasses (29ms)
  1980. RebuildNativeTypeToScriptingClass (12ms)
  1981. initialDomainReloadingComplete (24ms)
  1982. LoadAllAssembliesAndSetupDomain (371ms)
  1983. LoadAssemblies (251ms)
  1984. RebuildTransferFunctionScriptingTraits (0ms)
  1985. AnalyzeDomain (194ms)
  1986. TypeCache.Refresh (10ms)
  1987. TypeCache.ScanAssembly (1ms)
  1988. BuildScriptInfoCaches (167ms)
  1989. ResolveRequiredComponents (13ms)
  1990. FinalizeReload (627ms)
  1991. ReleaseScriptCaches (0ms)
  1992. RebuildScriptCaches (0ms)
  1993. SetupLoadedEditorAssemblies (475ms)
  1994. LogAssemblyErrors (0ms)
  1995. InitializePlatformSupportModulesInManaged (8ms)
  1996. SetLoadedEditorAssemblies (4ms)
  1997. BeforeProcessingInitializeOnLoad (117ms)
  1998. ProcessInitializeOnLoadAttributes (265ms)
  1999. ProcessInitializeOnLoadMethodAttributes (73ms)
  2000. AfterProcessingInitializeOnLoad (8ms)
  2001. EditorAssembliesLoaded (0ms)
  2002. ExecutionOrderSort2 (0ms)
  2003. AwakeInstancesAfterBackupRestoration (14ms)
  2004. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  2005. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2006. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2007. WARNING: Shader Unsupported: 'Hidden/Simulation/URP/Synthetic' - All subshaders removed
  2008. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2009. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2010. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  2011. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2012. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2013. WARNING: Shader Unsupported: 'Hidden/Simulation/Synthetic Lit' - All subshaders removed
  2014. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2015. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2016. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  2017. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2018. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2019. WARNING: Shader Unsupported: 'Simulation/Standard Lit' - All subshaders removed
  2020. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2021. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2022. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  2023. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2024. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2025. WARNING: Shader Unsupported: 'Simulation/URP/Room X-Ray' - All subshaders removed
  2026. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2027. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2028. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  2029. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2030. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2031. WARNING: Shader Unsupported: 'Simulation/Room X-Ray' - All subshaders removed
  2032. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2033. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2034. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  2035. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2036. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2037. WARNING: Shader Unsupported: 'Simulation/URP/Lit' - All subshaders removed
  2038. WARNING: Shader Did you use #pragma only_renderers and omit this platform?
  2039. WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
  2040. Refreshing native plugins compatible for Editor in 1.65 ms, found 1 plugins.
  2041. Preloading 0 native plugins for Editor in 0.00 ms.
  2042. Unloading 24 Unused Serialized files (Serialized files now loaded: 0)
  2043. Unloading 6006 unused Assets / (11.1 MB). Loaded Objects now: 6871.
  2044. Memory consumption went from 216.2 MB to 205.1 MB.
  2045. Total: 10.628800 ms (FindLiveObjects: 0.752300 ms CreateObjectMapping: 0.407800 ms MarkObjects: 4.624500 ms DeleteObjects: 4.843500 ms)
  2046. Prepare: number of updated asset objects reloaded= 0
  2047. ========================================================================
  2048. Received Import Request.
  2049. Time since last request: 300.927565 seconds.
  2050. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/PushButton.fbx
  2051. artifactKey: Guid(7ab6f3b0fd1a6ba41b2a47766c16613f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2052. 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
  2053. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 18
  2054. ========================================================================
  2055. Received Import Request.
  2056. Time since last request: 3.200870 seconds.
  2057. path: Assets/XR/XRGeneralSettings.asset
  2058. artifactKey: Guid(3fd4fc0127790db4bae83f7b77da8d45) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2059. Start importing Assets/XR/XRGeneralSettings.asset using Guid(3fd4fc0127790db4bae83f7b77da8d45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '111218141528e2adf446b018c47f241b') in 0.0013602 seconds
  2060. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  2061. ========================================================================
  2062. Received Import Request.
  2063. Time since last request: 0.000022 seconds.
  2064. path: Assets/XR/Settings/AR Kit Settings.asset
  2065. artifactKey: Guid(0465d33c6aee55f44b0237db8b0e0259) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2066. Start importing Assets/XR/Settings/AR Kit Settings.asset using Guid(0465d33c6aee55f44b0237db8b0e0259) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: 'cf37c1d8333c368c34c8de79c446b7e7') in 0.0005745 seconds
  2067. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 0
  2068. ========================================================================
  2069. Received Import Request.
  2070. Time since last request: 0.000023 seconds.
  2071. path: Assets/XR/Resources/ARCoreRuntimeSettings.asset
  2072. artifactKey: Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2073. Start importing Assets/XR/Resources/ARCoreRuntimeSettings.asset using Guid(08fdbb0af7907ad41ac6ab8bf4c5c3f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) (PreviewImporter) -> (artifact id: '3611b171d9127be41244a2c4bdd1b1f3') in 0.0019849 seconds
  2074. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 1
  2075. ========================================================================
  2076. Received Import Request.
  2077. Time since last request: 2.472215 seconds.
  2078. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Pyramid.fbx
  2079. artifactKey: Guid(63e02ddb08ce42da868504e1333d48ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2080. 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
  2081. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
  2082. ========================================================================
  2083. Received Import Request.
  2084. Time since last request: 0.000025 seconds.
  2085. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus.fbx
  2086. artifactKey: Guid(f077c919501a44778a0c2edb6eb1a54a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2087. 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
  2088. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
  2089. ========================================================================
  2090. Received Import Request.
  2091. Time since last request: 0.000027 seconds.
  2092. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Tapered_Cylinder.fbx
  2093. artifactKey: Guid(e3493855a112e8248a2ea2c9828a51a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2094. 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
  2095. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
  2096. ========================================================================
  2097. Received Import Request.
  2098. Time since last request: 0.000017 seconds.
  2099. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Wedge.fbx
  2100. artifactKey: Guid(504f04868fdec43fea10caa71569c542) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2101. 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
  2102. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
  2103. ========================================================================
  2104. Received Import Request.
  2105. Time since last request: 0.000024 seconds.
  2106. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/Models/Primitive_Wedge.fbx
  2107. artifactKey: Guid(ab3a79eba4de4be0ad5fead9fb858190) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2108. 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
  2109. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
  2110. ========================================================================
  2111. Received Import Request.
  2112. Time since last request: 0.000019 seconds.
  2113. path: Assets/Samples/XR Interaction Toolkit/3.3.0/Starter Assets/DemoSceneAssets/Models/Primitive_Torus_Cut.fbx
  2114. artifactKey: Guid(46c1c422ff6897f49a404b012dc924d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2115. 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
  2116. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 14
  2117. ========================================================================
  2118. Received Import Request.
  2119. Time since last request: 0.000022 seconds.
  2120. path: Assets/Samples/XR Interaction Toolkit/3.3.0/AR Starter Assets/ARDemoSceneAssets/Models/Primitive_Torus.fbx
  2121. artifactKey: Guid(a100fee70bb8248c49f00bd953b097c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2122. 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
  2123. Number of updated asset objects reloaded before import = 0Number of asset objects unloaded after import = 7
  2124. Editor requested this worker to shutdown with reason: Scaling down because of idle timeout
  2125. AssetImportWorker is now disconnected from the server
  2126. Process exiting
  2127. Exiting without the bug reporter. Application will terminate with return code 0