-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogRunSetup.txt
3835 lines (3816 loc) · 177 KB
/
logRunSetup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[LicensingClient] ERROR Error 10 while verifying Licensing Client signature (path: 13380, process Id: C:/Program Files/Unity Hub/Frameworks/LicensingClient/Unity.Licensing.Client.exe)
[Licensing::Module] LicensingClient has failed validation
[LicensingClient] ERROR Failed to connect to local IPC
[Licensing::Module] Failed to connect to channel: LicenseClient-lucas-2019.4.22
[Licensing::Module] Successfully launched the LicensingClient
[Licensing::Module] Successfully connected to LicensingClient on channel: LicenseClient-lucas-2019.4.22
[Licensing::Module] Successfully launched and connected to LicensingClient
Entitlement-based licensing initiated
[LicensingClient] Licenses Updated successfully in LicensingClient
LICENSE SYSTEM [20211122 19:30:27] Next license update check is after 2021-11-23T17:51:03
LICENSE SYSTEM [20211122 19:30:27] Machine binding 1 mismatch: (value of current machine) 00331-10000-00001-AA865 != 00331-10000-00001-AA889 (value in license file). Reason might be there is a hardware change on this machine after the license was activated.
LICENSE SYSTEM [20211122 19:30:27] Current license is already valid and activated. Skipping license activation process (Provided username/password will be ignored).
Built from '2019.4/staging' branch; Version is '2019.4.22f1 (9fdda2fe27ad) revision 10476962'; Using compiler version '191627012'
OS: 'Windows 10 Pro; OS build 19043.1348; Version 2009; 64bit' Language: 'es' Physical Memory: 24459 MB
[Licensing::Module] Serial number assigned to: "F4-YSA2-BKXY-FKTR-2CNT-XXXX"\nBatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
[Package Manager] Server::Start -- Port 49843 was selected
COMMAND LINE ARGUMENTS:
H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Unity.exe
-batchmode
-nographics
-logFile
logRunSetup.txt
-projectPath
C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp
-executeMethod
WwiseSetupWizard.RunModify
-quit
Successfully changed project path to: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp
C:/Users/lucas/Documents/GitHub/DSVJ03_WwiseIntegrationTemp
Using Asset Import Pipeline V2.
DisplayProgressbar: Unity Package Manager
Adding genesis user token [Package Manager] Done resolving packages in 2.98s seconds
[Package Manager] Done checking package constraints in 0.00s seconds
[Package Manager]
Registered 47 packages:
Packages from [https://packages.unity.com]:
com.unity.cinemachine@2.6.9 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.cinemachine@2.6.9)
com.unity.collab-proxy@1.2.16 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.collab-proxy@1.2.16)
com.unity.ide.rider@1.1.4 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.ide.rider@1.1.4)
com.unity.ide.vscode@1.2.3 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.ide.vscode@1.2.3)
com.unity.render-pipelines.universal@7.5.3 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.render-pipelines.universal@7.5.3)
com.unity.test-framework@1.1.22 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.test-framework@1.1.22)
com.unity.textmeshpro@2.1.1 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.textmeshpro@2.1.1)
com.unity.timeline@1.2.18 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.timeline@1.2.18)
com.unity.toolchain.win-x86_64-linux-x86_64@0.1.21-preview (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.toolchain.win-x86_64-linux-x86_64@0.1.21-preview)
com.unity.sysroot@0.1.19-preview (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.sysroot@0.1.19-preview)
com.unity.sysroot.linux-x86_64@0.1.14-preview (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.sysroot.linux-x86_64@0.1.14-preview)
com.unity.ext.nunit@1.0.6 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.ext.nunit@1.0.6)
com.unity.render-pipelines.core@7.5.3 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.render-pipelines.core@7.5.3)
com.unity.shadergraph@7.5.3 (location: C:\Users\lucas\Documents\GitHub\DSVJ03_WwiseIntegrationTemp\Library\PackageCache\com.unity.shadergraph@7.5.3)
Built-in packages:
com.unity.ugui@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.ugui)
com.unity.modules.ai@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ai)
com.unity.modules.androidjni@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.androidjni)
com.unity.modules.animation@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.animation)
com.unity.modules.assetbundle@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.assetbundle)
com.unity.modules.audio@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.audio)
com.unity.modules.cloth@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.cloth)
com.unity.modules.director@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.director)
com.unity.modules.imageconversion@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imageconversion)
com.unity.modules.imgui@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imgui)
com.unity.modules.jsonserialize@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.jsonserialize)
com.unity.modules.particlesystem@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.particlesystem)
com.unity.modules.physics@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics)
com.unity.modules.physics2d@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics2d)
com.unity.modules.screencapture@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.screencapture)
com.unity.modules.terrain@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrain)
com.unity.modules.terrainphysics@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrainphysics)
com.unity.modules.tilemap@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.tilemap)
com.unity.modules.ui@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ui)
com.unity.modules.uielements@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielements)
com.unity.modules.umbra@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.umbra)
com.unity.modules.unityanalytics@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unityanalytics)
com.unity.modules.unitywebrequest@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequest)
com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestassetbundle)
com.unity.modules.unitywebrequestaudio@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestaudio)
com.unity.modules.unitywebrequesttexture@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequesttexture)
com.unity.modules.unitywebrequestwww@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestwww)
com.unity.modules.vehicles@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vehicles)
com.unity.modules.video@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.video)
com.unity.modules.vr@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vr)
com.unity.modules.wind@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.wind)
com.unity.modules.xr@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.xr)
com.unity.modules.subsystems@1.0.0 (location: H:\Archivos de Programas\Unity\2019.4.22f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.subsystems)
[Subsystems] No new subsystems found in resolved package list.
[Package Manager] Done registering packages in 0.18s seconds
[Package Manager] Lock file was modified
Refreshing native plugins compatible for Editor in 1792.00 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2019.4.22f1 (9fdda2fe27ad)
[Subsystems] Discovering subsystems at path H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path C:/Users/lucas/Documents/GitHub/DSVJ03_WwiseIntegrationTemp/Assets
Forcing GfxDevice: Null
GfxDevice: creating device client; threaded=0
NullGfxDevice:
Version: NULL 1.0 [1.0]
Renderer: Null Device
Vendor: Unity Technologies
Initialize mono
Mono path[0] = 'H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/Managed'
Mono path[1] = 'H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56720
ImportWorker Server TCP listen port: 14499
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Register platform support module: H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
Register platform support module: H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll
Register platform support module: H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.091644 seconds.
[usbmuxd] Start listen thread
[usbmuxd] Listen thread started
Native extension for iOS target not found
Native extension for Android target not found
Native extension for LinuxStandalone target not found
Native extension for WebGL target not found
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 73.68 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Mono: successfully reloaded assembly
- Completed reload, in 4.233 seconds
Registering precompiled user dll's ...
Registered in 0.311641 seconds.
Platform modules already initialized, skipping
Validating Project structure ... 0.025746 seconds.
Shader import version has changed; will reimport all shaders...
Upgrading shader files ...0.190359 seconds.
Begin MonoManager ReloadAssembly
Native extension for iOS target not found
Native extension for Android target not found
Native extension for LinuxStandalone target not found
Native extension for WebGL target not found
Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 96.35 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
DisplayProgressbar: Populating Wwise Picker
Mono: successfully reloaded assembly
- Completed reload, in 6.332 seconds
Platform modules already initialized, skipping
RefreshInfo: InitialScriptRefreshV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 37475.406ms
InvokeBeforeRefreshCallbacks: 0.651ms
ApplyChangesToAssetFolders: 0.061ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 5967.525ms
OnSourceAssetsModified: 1.629ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 2.059ms
GetAllGuidsForCategorization: 0.561ms
CategorizeAssets: 289.508ms
ImportAndPostprocessOutOfDateAssets: 31180.050ms (31177.559ms without children)
ImportManagerImport: 0.000ms (0.000ms without children)
ImportInProcess: 0.000ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.000ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 0.000ms
ReloadImportedAssets: 0.000ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.492ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.562ms
OnDemandSchedulerStart: 0.000ms
RestoreLoadedAssetsState: 1.434ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 0.000ms
ReloadSourceAssets: 1.067ms
UnloadImportedAssets: 0.250ms
Hotreload: 0.137ms
FixTempGuids: 0.006ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.002ms
UnloadStreamsBegin: 0.947ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 0.028ms
GetLoadedSourceAssetsSnapshot: 1.796ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 28.003ms
GenerateScriptTypeHashes: 0.173ms
Untracked: 1.125ms
Start importing Assets/WwiseSettings.xml using Guid(aa023316813a2474f8c36efa3a4a1564) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/WwiseSettings.xml' (target hash: 'a93586cba9761a18f306904e5161af21') in 0.513733 seconds
Refreshing native plugins compatible for Editor in 2.73 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Refresh completed in 0.905499 seconds.
RefreshInfo: RefreshV2(ForceSynchronousImport)
RefreshProfiler: Total: 905.476ms
InvokeBeforeRefreshCallbacks: 1.212ms
ApplyChangesToAssetFolders: 0.101ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 108.511ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 12.807ms
GetAllGuidsForCategorization: 0.367ms
CategorizeAssets: 83.474ms
ImportAndPostprocessOutOfDateAssets: 687.693ms (3.910ms without children)
ImportManagerImport: 527.736ms (7.443ms without children)
ImportInProcess: 520.128ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.165ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 141.529ms
ReloadImportedAssets: 0.002ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.526ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.823ms
OnDemandSchedulerStart: 2.710ms
RestoreLoadedAssetsState: 2.796ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 6.661ms
ReloadSourceAssets: 1.114ms
UnloadImportedAssets: 0.236ms
Hotreload: 4.539ms
FixTempGuids: 0.009ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.846ms
UnloadStreamsBegin: 0.034ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.415ms
GetLoadedSourceAssetsSnapshot: 4.803ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.159ms
GenerateScriptTypeHashes: 3.246ms
Untracked: -1.842ms
Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found
RefreshInfo: StopAssetImportingV2(ForceSynchronousImport)
RefreshProfiler: Total: 36.635ms
InvokeBeforeRefreshCallbacks: 1.013ms
ApplyChangesToAssetFolders: 0.082ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 10.629ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 13.066ms
GetAllGuidsForCategorization: 0.000ms
CategorizeAssets: 0.000ms
ImportAndPostprocessOutOfDateAssets: 0.000ms (0.000ms without children)
ImportManagerImport: 0.000ms (0.000ms without children)
ImportInProcess: 0.000ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.000ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 0.000ms
ReloadImportedAssets: 0.000ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.000ms
InitializingProgressBar: 0.000ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.000ms
OnDemandSchedulerStart: 0.000ms
RestoreLoadedAssetsState: 0.000ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 0.000ms
ReloadSourceAssets: 0.000ms
UnloadImportedAssets: 0.000ms
Hotreload: 0.075ms
FixTempGuids: 0.011ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.717ms
UnloadStreamsBegin: 3.273ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 3.128ms
GetLoadedSourceAssetsSnapshot: 1.799ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.063ms
GenerateScriptTypeHashes: 0.000ms
Untracked: 2.778ms
Refresh completed in 0.202152 seconds.
RefreshInfo: RefreshV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 202.122ms
InvokeBeforeRefreshCallbacks: 0.000ms
ApplyChangesToAssetFolders: 0.064ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 97.948ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 8.418ms
GetAllGuidsForCategorization: 0.360ms
CategorizeAssets: 80.375ms
ImportAndPostprocessOutOfDateAssets: 6.370ms (1.805ms without children)
ImportManagerImport: 0.000ms (0.000ms without children)
ImportInProcess: 0.000ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.000ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 0.002ms
ReloadImportedAssets: 0.000ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.786ms
InitializingProgressBar: 0.000ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.389ms
OnDemandSchedulerStart: 0.411ms
RestoreLoadedAssetsState: 2.976ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 0.000ms
ReloadSourceAssets: 1.764ms
UnloadImportedAssets: 0.228ms
Hotreload: 0.079ms
FixTempGuids: 0.006ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.394ms
UnloadStreamsBegin: 0.152ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.665ms
GetLoadedSourceAssetsSnapshot: 4.052ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.026ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -0.781ms
Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found
Initializing Unity extensions:
'H:/Archivos de Programas/Unity/2019.4.22f1/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll' GUID: 4ba2329b63d54f0187bcaa12486b1b0f
Unloading 234 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 68.7 MB.
System memory in use after: 67.7 MB.
Unloading 325 unused Assets to reduce memory usage. Loaded Objects now: 2821.
Total: 6.729800 ms (FindLiveObjects: 0.722300 ms CreateObjectMapping: 0.379400 ms MarkObjects: 4.322000 ms DeleteObjects: 1.305000 ms)
WwiseUnity: Running modify setup...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object)
UnityEngine.Debug:Log (object)
WwiseSetupWizard:RunModify () (at C:/Users/lucas/Documents/GitHub/DSVJ03/Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkWwiseSetupWizard.cs:8)
(Filename: C:/Users/lucas/Documents/GitHub/DSVJ03/Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkWwiseSetupWizard.cs Line: 8)
Unloading 3 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 64.2 MB.
System memory in use after: 64.3 MB.
Unloading 1 unused Assets to reduce memory usage. Loaded Objects now: 2827.
Total: 13.859300 ms (FindLiveObjects: 1.202900 ms CreateObjectMapping: 0.797900 ms MarkObjects: 11.829000 ms DeleteObjects: 0.026500 ms)
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll using Guid(8a811a70fd015754a8df1c9283117dea) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll' (target hash: '0139708d5e5fdcb6c1e4f86e982cd62d') in 0.028039 seconds
Refreshing native plugins compatible for Editor in 1.02 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 155.707ms
InvokeBeforeRefreshCallbacks: 0.004ms
ApplyChangesToAssetFolders: 0.320ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 59.854ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 9.353ms
GetAllGuidsForCategorization: 0.376ms
CategorizeAssets: 3.094ms
ImportAndPostprocessOutOfDateAssets: 71.891ms (6.384ms without children)
ImportManagerImport: 38.706ms (4.023ms without children)
ImportInProcess: 34.598ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.086ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 15.126ms
ReloadImportedAssets: 0.918ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.833ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.469ms
OnDemandSchedulerStart: 0.276ms
RestoreLoadedAssetsState: 3.078ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 6.101ms
ReloadSourceAssets: 2.810ms
UnloadImportedAssets: 0.160ms
Hotreload: 1.218ms
FixTempGuids: 0.003ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.537ms
UnloadStreamsBegin: 2.939ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.945ms
GetLoadedSourceAssetsSnapshot: 5.509ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.016ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -4.321ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll using Guid(9d2683d039274d344bd450db6e944b57) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll' (target hash: 'd08a4a93a37a7c71e866245157bc1041') in 0.020716 seconds
Refreshing native plugins compatible for Editor in 1.70 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 84.527ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.072ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 11.399ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 8.507ms
GetAllGuidsForCategorization: 0.572ms
CategorizeAssets: 3.005ms
ImportAndPostprocessOutOfDateAssets: 50.762ms (2.921ms without children)
ImportManagerImport: 26.905ms (2.847ms without children)
ImportInProcess: 23.988ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.070ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 10.860ms
ReloadImportedAssets: 0.600ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.665ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.385ms
OnDemandSchedulerStart: 0.248ms
RestoreLoadedAssetsState: 1.948ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 6.228ms
ReloadSourceAssets: 1.943ms
UnloadImportedAssets: 0.279ms
Hotreload: 1.938ms
FixTempGuids: 0.004ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.436ms
UnloadStreamsBegin: 0.028ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.248ms
GetLoadedSourceAssetsSnapshot: 4.778ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.017ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -1.462ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll using Guid(c22f09e07cd07484891be3819ce0bc09) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll' (target hash: '547d658ebd02b06b59beeb1bca719ee7') in 0.024768 seconds
Refreshing native plugins compatible for Editor in 1.21 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 93.345ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.104ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 8.290ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 7.366ms
GetAllGuidsForCategorization: 0.722ms
CategorizeAssets: 4.460ms
ImportAndPostprocessOutOfDateAssets: 64.233ms (3.154ms without children)
ImportManagerImport: 32.480ms (3.293ms without children)
ImportInProcess: 29.132ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.056ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 12.048ms
ReloadImportedAssets: 0.896ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.014ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.488ms
OnDemandSchedulerStart: 0.286ms
RestoreLoadedAssetsState: 3.030ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 10.836ms
ReloadSourceAssets: 1.384ms
UnloadImportedAssets: 0.294ms
Hotreload: 1.405ms
FixTempGuids: 0.003ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.505ms
UnloadStreamsBegin: 0.017ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.014ms
GetLoadedSourceAssetsSnapshot: 6.586ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.015ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -4.054ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll using Guid(ddabbfe0d419af6439839f16ab71a6d4) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll' (target hash: 'e36bc8446cec009a9f5a341eb41a86d4') in 0.024458 seconds
Refreshing native plugins compatible for Editor in 1.35 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 82.001ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.101ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 8.137ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 7.462ms
GetAllGuidsForCategorization: 0.642ms
CategorizeAssets: 3.312ms
ImportAndPostprocessOutOfDateAssets: 53.395ms (1.505ms without children)
ImportManagerImport: 31.695ms (3.583ms without children)
ImportInProcess: 28.060ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.052ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 9.114ms
ReloadImportedAssets: 1.409ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.549ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.445ms
OnDemandSchedulerStart: 0.348ms
RestoreLoadedAssetsState: 2.401ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 5.928ms
ReloadSourceAssets: 1.365ms
UnloadImportedAssets: 0.186ms
Hotreload: 1.747ms
FixTempGuids: 0.006ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.347ms
UnloadStreamsBegin: 0.027ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.342ms
GetLoadedSourceAssetsSnapshot: 4.661ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.023ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -1.752ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll using Guid(51ca00017cfe47b4e9fe11fa46b78b66) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll' (target hash: '74044df7361d9720e08ae15efc2dfd8b') in 0.020196 seconds
Refreshing native plugins compatible for Editor in 2.85 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 87.602ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.083ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 9.116ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 11.817ms
GetAllGuidsForCategorization: 0.439ms
CategorizeAssets: 2.223ms
ImportAndPostprocessOutOfDateAssets: 54.480ms (1.991ms without children)
ImportManagerImport: 30.308ms (5.065ms without children)
ImportInProcess: 25.156ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.087ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 11.776ms
ReloadImportedAssets: 1.502ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.755ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.577ms
OnDemandSchedulerStart: 0.215ms
RestoreLoadedAssetsState: 2.923ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 4.432ms
ReloadSourceAssets: 1.821ms
UnloadImportedAssets: 0.157ms
Hotreload: 3.102ms
FixTempGuids: 0.003ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.901ms
UnloadStreamsBegin: 0.048ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.456ms
GetLoadedSourceAssetsSnapshot: 5.159ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.014ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -3.217ms
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle using Guid(d6c064713b98e3845bfebeb21ac07c9a) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle' (target hash: 'd53d4897ecf696ab8e29d8bcacd93e00') in 0.019572 seconds
Refreshing native plugins compatible for Editor in 2.09 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 86.790ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.071ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 10.297ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 7.701ms
GetAllGuidsForCategorization: 1.079ms
CategorizeAssets: 4.657ms
ImportAndPostprocessOutOfDateAssets: 51.115ms (2.833ms without children)
ImportManagerImport: 26.561ms (3.450ms without children)
ImportInProcess: 23.037ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.074ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 10.650ms
ReloadImportedAssets: 0.791ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.830ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.345ms
OnDemandSchedulerStart: 0.240ms
RestoreLoadedAssetsState: 2.820ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 6.045ms
ReloadSourceAssets: 2.547ms
UnloadImportedAssets: 0.189ms
Hotreload: 2.393ms
FixTempGuids: 0.009ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.340ms
UnloadStreamsBegin: 0.021ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.400ms
GetLoadedSourceAssetsSnapshot: 5.053ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.026ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -0.109ms
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkReflect.bundle using Guid(1729afd1e03f8d0478eb9e3a09b41390) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkReflect.bundle' (target hash: 'a9e309ce8edfc6f1f3a815711ddea1e3') in 0.025170 seconds
Refreshing native plugins compatible for Editor in 1.14 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 91.070ms
InvokeBeforeRefreshCallbacks: 0.000ms
ApplyChangesToAssetFolders: 0.086ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 9.072ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 7.454ms
GetAllGuidsForCategorization: 0.766ms
CategorizeAssets: 5.698ms
ImportAndPostprocessOutOfDateAssets: 56.324ms (2.252ms without children)
ImportManagerImport: 31.084ms (3.289ms without children)
ImportInProcess: 27.725ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.070ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 8.974ms
ReloadImportedAssets: 0.528ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.940ms
InitializingProgressBar: 0.008ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.327ms
OnDemandSchedulerStart: 0.721ms
RestoreLoadedAssetsState: 2.718ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 8.772ms
ReloadSourceAssets: 1.408ms
UnloadImportedAssets: 1.684ms
Hotreload: 1.371ms
FixTempGuids: 0.004ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.541ms
UnloadStreamsBegin: 0.017ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.783ms
GetLoadedSourceAssetsSnapshot: 4.990ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.031ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -0.162ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll using Guid(a6a30233238c0ce429384e155b4fedb8) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll' (target hash: '357342302364bdad946efbfd475d375c') in 0.023305 seconds
Refreshing native plugins compatible for Editor in 1.86 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 78.020ms
InvokeBeforeRefreshCallbacks: 0.000ms
ApplyChangesToAssetFolders: 0.077ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 6.505ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 6.993ms
GetAllGuidsForCategorization: 0.306ms
CategorizeAssets: 3.105ms
ImportAndPostprocessOutOfDateAssets: 51.845ms (4.239ms without children)
ImportManagerImport: 29.641ms (2.621ms without children)
ImportInProcess: 26.972ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.048ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 9.218ms
ReloadImportedAssets: 0.668ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.817ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.332ms
OnDemandSchedulerStart: 0.345ms
RestoreLoadedAssetsState: 2.683ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 3.901ms
ReloadSourceAssets: 1.984ms
UnloadImportedAssets: 0.360ms
Hotreload: 2.214ms
FixTempGuids: 0.009ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.373ms
UnloadStreamsBegin: 0.016ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.402ms
GetLoadedSourceAssetsSnapshot: 6.617ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.049ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -4.835ms
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAuro.bundle using Guid(cd1b5d43047676a4aaf631c8534958ce) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAuro.bundle' (target hash: 'a3b68a310653bdd5b23994c83ea3c06a') in 0.028187 seconds
Refreshing native plugins compatible for Editor in 1.91 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 94.629ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.182ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 7.911ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 9.690ms
GetAllGuidsForCategorization: 0.285ms
CategorizeAssets: 2.295ms
ImportAndPostprocessOutOfDateAssets: 63.615ms (1.337ms without children)
ImportManagerImport: 42.071ms (4.255ms without children)
ImportInProcess: 37.762ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.054ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 9.028ms
ReloadImportedAssets: 1.358ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.897ms
InitializingProgressBar: 0.005ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.407ms
OnDemandSchedulerStart: 0.438ms
RestoreLoadedAssetsState: 2.101ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 5.973ms
ReloadSourceAssets: 1.440ms
UnloadImportedAssets: 1.028ms
Hotreload: 2.280ms
FixTempGuids: 0.004ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.683ms
UnloadStreamsBegin: 0.059ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.502ms
GetLoadedSourceAssetsSnapshot: 4.553ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.015ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -0.917ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll using Guid(22c466e3185953c4b9e3b3bfc9be2c43) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll' (target hash: '1cec6bfe9b413f1f7db282a665428c23') in 0.022271 seconds
Refreshing native plugins compatible for Editor in 1.50 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 106.870ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.093ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 9.979ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 10.926ms
GetAllGuidsForCategorization: 0.775ms
CategorizeAssets: 4.018ms
ImportAndPostprocessOutOfDateAssets: 70.725ms (2.653ms without children)
ImportManagerImport: 32.650ms (6.810ms without children)
ImportInProcess: 25.768ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.072ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 16.068ms
ReloadImportedAssets: 1.127ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.036ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.300ms
OnDemandSchedulerStart: 0.277ms
RestoreLoadedAssetsState: 2.090ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 14.521ms
ReloadSourceAssets: 1.654ms
UnloadImportedAssets: 0.247ms
Hotreload: 1.720ms
FixTempGuids: 0.005ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.375ms
UnloadStreamsBegin: 0.014ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.109ms
GetLoadedSourceAssetsSnapshot: 7.600ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.015ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -2.387ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll using Guid(5e3cdc3459f488a47815f5c4b04f9942) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll' (target hash: 'ac9f10c1bd02660a1b72776679ab4fe7') in 0.015293 seconds
Refreshing native plugins compatible for Editor in 1.32 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 78.170ms
InvokeBeforeRefreshCallbacks: 0.000ms
ApplyChangesToAssetFolders: 0.060ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 8.443ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 8.748ms
GetAllGuidsForCategorization: 0.502ms
CategorizeAssets: 5.217ms
ImportAndPostprocessOutOfDateAssets: 47.252ms (2.542ms without children)
ImportManagerImport: 22.917ms (4.082ms without children)
ImportInProcess: 18.772ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.063ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 9.892ms
ReloadImportedAssets: 0.823ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.471ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.640ms
OnDemandSchedulerStart: 0.534ms
RestoreLoadedAssetsState: 4.457ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 3.975ms
ReloadSourceAssets: 1.699ms
UnloadImportedAssets: 0.347ms
Hotreload: 1.586ms
FixTempGuids: 0.007ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.384ms
UnloadStreamsBegin: 0.013ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.814ms
GetLoadedSourceAssetsSnapshot: 6.868ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.018ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -4.789ms
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle using Guid(79f44754662472948adafd330d329983) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle' (target hash: '4095d6254fff28691edc7bd97e3b655e') in 0.018863 seconds
Refreshing native plugins compatible for Editor in 3.63 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 76.047ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.115ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 8.249ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 4.962ms
GetAllGuidsForCategorization: 0.951ms
CategorizeAssets: 3.885ms
ImportAndPostprocessOutOfDateAssets: 46.579ms (1.775ms without children)
ImportManagerImport: 29.083ms (2.946ms without children)
ImportInProcess: 26.066ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.072ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 6.001ms
ReloadImportedAssets: 0.557ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.551ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.251ms
OnDemandSchedulerStart: 0.451ms
RestoreLoadedAssetsState: 2.445ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 5.462ms
ReloadSourceAssets: 1.146ms
UnloadImportedAssets: 0.174ms
Hotreload: 4.080ms
FixTempGuids: 0.011ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 0.599ms
UnloadStreamsBegin: 0.028ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 2.422ms
GetLoadedSourceAssetsSnapshot: 4.621ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.051ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -1.825ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll using Guid(9becf4252368e1248bac3dfeadfe2c68) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll' (target hash: 'd929eb458868941083a360fee4daa2a7') in 0.019585 seconds
Refreshing native plugins compatible for Editor in 1.05 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 76.959ms
InvokeBeforeRefreshCallbacks: 0.001ms
ApplyChangesToAssetFolders: 0.125ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 6.646ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 8.411ms
GetAllGuidsForCategorization: 0.276ms
CategorizeAssets: 2.328ms
ImportAndPostprocessOutOfDateAssets: 51.684ms (2.814ms without children)
ImportManagerImport: 28.335ms (6.045ms without children)
ImportInProcess: 22.197ms
ImportOutOfProcess: 0.000ms
UpdateCategorizedAssets: 0.093ms
RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
RemoteAssetCacheResolve: 0.000ms
RemoteAssetCacheDownloadFile: 0.000ms
CompileScripts: 0.000ms
PostProcessAllAssets: 9.873ms
ReloadImportedAssets: 0.740ms
VerifyAssetsAreUpToDateAndCorrect: 0.000ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.829ms
InitializingProgressBar: 0.002ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.529ms
OnDemandSchedulerStart: 0.428ms
RestoreLoadedAssetsState: 2.975ms
InvokeProjectHasChanged: 0.000ms
UpdateImportedAssetsSnapshot: 5.159ms
ReloadSourceAssets: 1.922ms
UnloadImportedAssets: 0.431ms
Hotreload: 1.288ms
FixTempGuids: 0.003ms
VerifyGuidPMRegistrations: 0.000ms
GatherAllCurrentPrimaryArtifactRevisions: 1.106ms
UnloadStreamsBegin: 0.023ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 1.302ms
GetLoadedSourceAssetsSnapshot: 5.162ms
PersistCurrentRevisions: 0.000ms
UnloadStreamsEnd: 0.015ms
GenerateScriptTypeHashes: 0.000ms
Untracked: -3.766ms
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll using Guid(72c7d865d667f20478af29e1e99f0b87) Importer(-1,00000000000000000000000000000000)
Done importing asset: 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll' (target hash: 'd3734ca463679f3f3e51fe964a8792d8') in 0.019926 seconds
Refreshing native plugins compatible for Editor in 1.15 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
RefreshProfiler: Total: 86.573ms
InvokeBeforeRefreshCallbacks: 0.000ms
ApplyChangesToAssetFolders: 0.065ms
WriteModifiedImportersToTextMetaFiles: 0.000ms
CleanLegacyArtifacts: 0.000ms
Scan: 8.658ms
OnSourceAssetsModified: 0.000ms
UnregisterDeletedAssets: 0.000ms
InitializeImportedAssetsSnapshot: 7.018ms
GetAllGuidsForCategorization: 1.232ms
CategorizeAssets: 5.517ms
ImportAndPostprocessOutOfDateAssets: 56.269ms (2.798ms without children)
ImportManagerImport: 26.096ms (2.998ms without children)
ImportInProcess: 23.054ms