-
Notifications
You must be signed in to change notification settings - Fork 0
/
logRunSetup.txt
6539 lines (5285 loc) · 653 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
[Licensing::Module] Channel doesn't exist: "LicenseClient-Andrew"
[Licensing::Module] Successfully launched the LicensingClient (PId: 21140)
[Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-Andrew" (connect: 1.13s, validation: 0.06s, handshake: 0.98s)
[Licensing::Module] Connected to LicensingClient (PId: 21140, launch time: 0.01, total connection time: 2.17s)
Entitlement-based licensing initiated
[LicensingClient] Licenses updated successfully
LICENSE SYSTEM [2021324 15:35:39] Next license update check is after 2020-09-28T20:23:40
LICENSE SYSTEM [2021324 15:35:39] Machine binding 1 mismatch: (value of current machine) 00326-10043-57584-AA045 != 00326-10043-57584-AA312 (value in license file). Reason might be there is a hardware change on this machine after the license was activated.
LICENSE SYSTEM [2021324 15:35:39] Current license is already valid and activated. Skipping license activation process (Provided username/password will be ignored).
Built from '2020.3/release' branch; Version is '2020.3.1f1 (77a89f25062f) revision 7841951'; Using compiler version '192528614'; Build Type 'Release'
OS: 'Windows 10 Home; OS build 19041.867; Version 2004; 64bit' Language: 'en' Physical Memory: 16333 MB
[Licensing::Module] Serial number assigned to: "F4-N48R-Y2WU-QU7K-N8SR-XXXX"
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
[Package Manager] Server::Start -- Port 65422 was selected
COMMAND LINE ARGUMENTS:
C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Unity.exe
-batchmode
-nographics
-logFile
logRunSetup.txt
-projectPath
C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp
-executeMethod
WwiseSetupWizard.RunSetup
-quit
Successfully changed project path to: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp
C:/Unity Projects/Git Kraken/SpringGameJam_WwiseIntegrationTemp
Using Asset Import Pipeline V2.
[Package Manager] Done resolving packages in 1.49s seconds
[Package Manager] Done checking package constraints in 0.00s seconds
[Package Manager]
Registered 42 packages:
Packages from [https://packages.unity.com]:
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
[email protected] (location: C:\Unity Projects\Git Kraken\SpringGameJam_WwiseIntegrationTemp\Library\PackageCache\[email protected])
Built-in packages:
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.ugui)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ai)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.androidjni)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.animation)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.assetbundle)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.audio)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.cloth)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.director)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imageconversion)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imgui)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.jsonserialize)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.particlesystem)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics2d)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.screencapture)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrain)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrainphysics)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.tilemap)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ui)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielements)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.umbra)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unityanalytics)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequest)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestassetbundle)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestaudio)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequesttexture)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestwww)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vehicles)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.video)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vr)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.wind)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.xr)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.subsystems)
[email protected] (location: C:\Program Files\Unity\Hub\Editor\2020.3.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielementsnative)
[Subsystems] No new subsystems found in resolved package list.
Package Manager log level set to [2]
[Package Manager] Done registering packages in 0.21s seconds
[Package Manager] Lock file was modified
Refreshing native plugins compatible for Editor in 49.88 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.01 ms.
Initialize engine version: 2020.3.1f1 (77a89f25062f)
[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path C:/Unity Projects/Git Kraken/SpringGameJam_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] = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/Managed'
Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56328
AcceleratorClientConnectionCallback - disconnected - :0
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.038485 seconds.
Native extension for WindowsStandalone target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Refreshing native plugins compatible for Editor in 31.02 ms, found 0 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 3.854 seconds
Platform modules already initialized, skipping
Validating Project structure ... 0.006115 seconds.
Shader import version has changed; will reimport all shaders...
Upgrading shader files ...0.005729 seconds.
Application.AssetDatabase Initial Script Refresh Start
Start importing Assets/StreamingAssets using Guid(9df4840042ba87d499b6e7fa7b61005c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b5ada09342a217884ed68bd852073633') in 0.025527 seconds
Start importing Assets/Wwise using Guid(9f86038185fe5294c8dc5222ea0454b0) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0725388a5002dab34c629399648e3c61') in 0.007784 seconds
Start importing Assets/Wwise/Editor using Guid(212922d4993411e4ca00b6ce50536cf1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8c12f6543819c6fd222caf6fbb079c8b') in 0.007460 seconds
Start importing Assets/Wwise/Gizmos using Guid(8100bb895d6c32140aa04630dccb9601) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5d047b8cce700e6d773562c5ab278bbb') in 0.007103 seconds
Start importing Assets/Wwise/MonoBehaviour using Guid(810967c7b0dac7d49abc88a22ce2962a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '416c9a1de03564cb2e36ce3f4ca70b3c') in 0.007453 seconds
Start importing Assets/Wwise/API using Guid(428335f8a4e0edc4caefdd3e5a90cff8) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f29278abce22e3ea2cb32ade594295a5') in 0.010357 seconds
Start importing Assets/Wwise/Timeline using Guid(e207e58a7ed2bca42875cbc18ae77886) Importer(-1,00000000000000000000000000000000) -> (artifact id: '92f1bd2a09984f8f0aba617946990db2') in 0.007907 seconds
Start importing Assets/Wwise/Documentation using Guid(b4a84857bfc62094dbf9abe51478b474) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5ea71b9d3a063f04fa883722693f58fa') in 0.007639 seconds
Start importing Assets/Wwise/Tools using Guid(fa5fc30e3a8400644b0f9c8fb5b2cdd4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '81330af10df6fc333fd4a70c1645acf9') in 0.008158 seconds
Start importing Assets/Wwise/API/Editor using Guid(71d59561c1e96aa4992c457b9f77bab0) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a27c8cf25a741870cb7d1552f3930a8b') in 0.008616 seconds
Start importing Assets/Wwise/Timeline/Runtime using Guid(91b16a3af29fcd941ad3337082e0527d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'dfe9cbbe70cb54072f03a621e8eb56ce') in 0.008336 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor using Guid(d5cf7e7b910076443a9dd59a22fb2837) Importer(-1,00000000000000000000000000000000) -> (artifact id: '57809697690b4420c718400374b0a400') in 0.008075 seconds
Start importing Assets/Wwise/Documentation/Windows using Guid(e5586f565ee460d48ac98def5768d87d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '163f6862d3c9cef72c125c4124d1808f') in 0.008460 seconds
Start importing Assets/Wwise/Documentation/AppleCommon using Guid(d7974ca85476a8746a34be130ec52132) Importer(-1,00000000000000000000000000000000) -> (artifact id: '63239075f72ea6f8b34fa4e798639dba') in 0.007974 seconds
Start importing Assets/Wwise/API/Runtime using Guid(d88868165f934e84c8a2b5a67172298e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f401291cf61de71dcbe59727b3e3c06d') in 0.007570 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime using Guid(dac3d232d2dde3547871506780b11f42) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c7fb7ccff65862692856875cbd905eac') in 0.007626 seconds
Start importing Assets/Wwise/Editor/ProjectData using Guid(5c07e5a9d96c7ce4491e021ebf4a2cc8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '88e963dd746ccd2bdd27dfdd7a7cdc65') in 0.007894 seconds
Start importing Assets/Wwise/Timeline/Editor using Guid(8c3e6a6ba7b883f4f80fb0b9f595b9d8) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e4408679940d628ecd9a087b97f9d6d1') in 0.007867 seconds
Start importing Assets/Wwise/Documentation/Windows/ja using Guid(214537d4eeaff984db05ca8d47764432) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0412bdcdb5325754ca0a4bbdea05c152') in 0.009003 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/ko using Guid(31f53f05fe982f14283b071a396d3805) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2c2d451dbc828fa6f5f64cbc23ecd3ef') in 0.007812 seconds
Start importing Assets/Wwise/Documentation/Windows/zh using Guid(4205a3385da52e64f9fd3e1d42133375) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a8dba8a1bedd53eca2b790edb09c01e6') in 0.007801 seconds
Start importing Assets/Wwise/Documentation/Windows/en using Guid(e3b24f32a6c07b245b79bd15f2705eee) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9540cd6a31df9c6c90598d0a49b07d7c') in 0.008504 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu using Guid(445385f0be211374a8baf1020681d1bb) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7c4f1b9f7894e8ac70fb2ac9307cb2df') in 0.008668 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard using Guid(75bb52435d82d654d93987cca9aa58cc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c339ad6ebb9759a363b4f7dd40a33b30') in 0.007288 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers using Guid(578f9d1dc43c033478c75a367a0cb4c4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4ea209c5774c571c46ac1fc07ec080a7') in 0.008202 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows using Guid(e71d77a06d585ab478cfd04fa36b4620) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c06893c7534b7ad8e500ee91017944cd') in 0.009236 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes using Guid(28471dc09b3c63440b3dbcb948ea0e48) Importer(-1,00000000000000000000000000000000) -> (artifact id: '14e1defa815c9ae09dba82d30fc2cd0c') in 0.007980 seconds
Start importing Assets/Wwise/API/Runtime/Generated using Guid(897b050c5c282bf48be2649bca9ef83d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c1cddde54e20d419861624144f10989b') in 0.007696 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/en using Guid(f9359d49732e53e4db3c7bdba63ab57c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2d4db8017f1be30e73fe178fbdbd9b3e') in 0.007941 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/ja using Guid(1b6d689542b41d040a6c75f5e17b3f61) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6f69cbdfab186723cd966e1926527461') in 0.009050 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/zh using Guid(9cb02bd2f3b91c6428711328f57e12ad) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5c722a7ab1054c1bcdea3dcf205ef3d4') in 0.007766 seconds
Start importing Assets/Wwise/API/Runtime/Plugins using Guid(7ef805f71b1347e4f8a9d33b4469c27f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '95c274de8214f1c998207cc9e700d95e') in 0.008364 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes using Guid(8efdd999f8505444ab44559cc1550e2a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '604016d74ef2ab500621ba43bb2e6f22') in 0.008486 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten using Guid(9eccd555f5ab3cd4b9880395948b0782) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a0c9affcd97101360a2f6f56a625f297') in 0.008502 seconds
Start importing Assets/Wwise/Documentation/Windows/ko using Guid(df03542ceea68534392754c6f1081a60) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'adb30dbdef317307ce586ee8dcbe5a78') in 0.007195 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects using Guid(c1e083bee77daf844b96bdd895a934bf) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e9f9a7630821d9e0fc1308b2b2f18322') in 0.007383 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common using Guid(12a5c781f3a42aa43bc528d89bc336b5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '55afa2a867c3811d059176ce55d33ffc') in 0.007941 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers/Windows using Guid(d21101d54d169b944b6467ccf999d150) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2a82b47e1731c165694fa104632f5669') in 0.008939 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac using Guid(93e5240f450a9b443afa87eab9d13b1f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '289cbc8bc8174f8a50b982447fd7e929') in 0.008255 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac using Guid(75abf4281f207d34d8476c2970fcdddc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8108d0c008a6c1de587b5ba061d3428e') in 0.007280 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Windows using Guid(564e005a372cc6e4dbf1bf2ff783eb81) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a0b287ad59cfb76defa031e1951455d9') in 0.007906 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common using Guid(28942bddca7762348b8bcb83cebddb25) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f4fcae4a1b04d8b3452d892355acdb1f') in 0.009844 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers/Mac using Guid(38154610df5782147841d7f1ef710535) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd17cf86e8569b4abc88ef6bf42502dbf') in 0.008328 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Mac using Guid(098c57743852a1f4b953549d77f2017b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '55b376195aa36da8d9fa4705e5a1b0f5') in 0.007555 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows using Guid(a9f01fcdf3cd69946aa7ed1121896c7d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'db4062e60afd9144b9c03cd249cfaf3c') in 0.008838 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Common using Guid(3a28dfd6cfc6d4948a575069c66408bd) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd38dbd83fded02ae6100e67a0b46faea') in 0.008896 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes using Guid(5c8e83f939cf8fe4994324fc55fef4e8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8bf7ab53d5adeaf635db6c5c14288212') in 0.008582 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons using Guid(0dd7b3c68e50ae141885a098b6052e07) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cd6b78f3d16aff5e06b2363fa33ebcb0') in 0.008550 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Windows using Guid(ad68e4d0b5e832c4d8a77e895ee77432) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bdf611a33582a9c96d18512264706718') in 0.009213 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI using Guid(adbe2754aaba9b5439c3f5aa970792f8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '01c5f6931d7f28c5639cc532666a6c2a') in 0.008824 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Mac using Guid(cee0a96e94a643d4f9c5cdd4294ba6ac) Importer(-1,00000000000000000000000000000000) -> (artifact id: '969922bb4b3f776f7a80e1f9e0779654') in 0.008473 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows using Guid(4f88b6dbfc2410a44bc75bc0e9a9a593) Importer(-1,00000000000000000000000000000000) -> (artifact id: '96c85bdc760d9c70b42da3219e7e8f5d') in 0.009670 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP using Guid(425ec8feb072a3c41998c6f7c84c44f1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2de539e2793479901550e8b8ac899d2f') in 0.009546 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release using Guid(f201cd8af1703e84c9be802cc611d064) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a1d8553d3a1e5a7b7ebcf5afdf1a867b') in 0.008287 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays using Guid(c62ee14da99256148931cee0d11d862e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '90335a063af0c454f2997856448b2b09') in 0.007695 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug using Guid(d8835ffd9ac6eb74bb4c7a2d637a8a3e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '439694d995fe8a495b64485e23bdf6c4') in 0.007486 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64 using Guid(6d9909927ee1d054da03ae85706d7663) Importer(-1,00000000000000000000000000000000) -> (artifact id: '468b495fc7ba560a3a5971889b53d1c1') in 0.007846 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile using Guid(edb7444088d8a404db82de4e6bb2fd78) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3430e05cdee1780250abce14b87801d1') in 0.008584 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86 using Guid(eff105d921b363d48beb855a164f3794) Importer(-1,00000000000000000000000000000000) -> (artifact id: '928103810f4ed6dc447bb2da2685fcf6') in 0.008410 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP using Guid(902816b33b9a70946af0e6ba88f27d25) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd6db6d3c1cd49bc67c5187d8612827d0') in 0.009189 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release using Guid(71f4fb951a7ffa3438099af05d47de85) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9372759dacdc5cf5e42c1038422ee08e') in 0.009525 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM using Guid(6259084f6fcb0714ea1170f5ea38f25f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9e2368097d6263f3c6ac97c715112896') in 0.008738 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release using Guid(233c1db915f8d1a479963ea4ce9c7d58) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd448601b35c5dd943f1b717dc0684d78') in 0.008182 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle using Guid(b50ec01f2601ac84d840e7cb5851dae4) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle
-> (artifact id: 'de9a3d2fb1c011c87bfda3b1352223ee') in 0.024601 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle using Guid(3753506b1ef376a40bf62bd0e710b3c4) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle
-> (artifact id: 'be898cab2806e388697c996d5b0fd0f4') in 0.013085 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM using Guid(87b197529c841cf4eafe15fa02b6247f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd35f69e2401cf279b339cb14e0a074e9') in 0.008354 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug using Guid(a7bca5200c01f5547b6260855a22080f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b2ba77ebbea60ab26fc79199108c0e0c') in 0.008192 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM using Guid(099ecf82198e4fa4fa39400c35654a49) Importer(-1,00000000000000000000000000000000) -> (artifact id: '94c47d28cff2378fa6be343530042bdc') in 0.008554 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug using Guid(398cf33fd2bff564793585b042fa36a9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '43a5f6b75e8b069d4ebc7de2ebd36e39') in 0.007565 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle using Guid(f923ac17c18be9c48b9c886b9476d3e3) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle
-> (artifact id: '74de771878498564f4733962298f1adf') in 0.012502 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile using Guid(6afd014b1d3fa534893e6b33397cfa12) Importer(-1,00000000000000000000000000000000) -> (artifact id: '135a849bb1634a580e4b0395940e515f') in 0.007787 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile using Guid(8cbb827805b1f1d42848b52100b9c8c5) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f2bbe75b15bca10250b575722766f194') in 0.008237 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP using Guid(9c6e4ec67b997ba458cb4e4f5607ced9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a498bd97b9d2850ad6a263289dace3b6') in 0.008460 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents using Guid(c30c9d1550c06b74ba997429f43a1fb8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3c4e8990ff97e2c0a0e1359994a8f2dd') in 0.007488 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM/Contents using Guid(549df713a0dda964da26602d03c2e1a7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '78a70f4dcb8b39998adfff11143e359f') in 0.007837 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM/Contents using Guid(0b3696297d792b14ea85fc2a6b9da626) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c2a0778248df82c91c4612ef7fedf899') in 0.007304 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle/Contents using Guid(7bafcc436d97c884097799fc26f562c4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '31bd7e4544f18dde92bf097d3383ac8f') in 0.007875 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents using Guid(8da352183dd51094a8279164b2345f86) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8e636ef9509a277189409287dc3da203') in 0.007356 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM/Contents using Guid(9e83b7be8949d2b44be997d69a56ae06) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c18d6888ff4caf0e7efe715184437dd3') in 0.007922 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTimeStretch.dll using Guid(409184929fee20c4eb9e25938a550c38) Importer(-1,00000000000000000000000000000000) -> (artifact id: '994d93ad189a13d55232d7a828f177bb') in 0.022159 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll using Guid(a07bd12859c0c93428edd8d8ae2f81a2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '004f9000414ede383a6ed250ef9206c1') in 0.023223 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll using Guid(215424a1e5b17df42921e794c3169742) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b2878cdc0eda950fcdd7320a24b09d12') in 0.023753 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkStereoDelay.bundle using Guid(31bffde3d7ea93c459435b99403c9e03) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkStereoDelay.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkStereoDelay.bundle
-> (artifact id: 'f02cd365ffa2b3c8f66a382870644565') in 0.018771 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedAir.bundle using Guid(7107528f2cd74304da3b45591b0ab2bf) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedAir.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedAir.bundle
-> (artifact id: '555264125f35a793dce391b781462b90') in 0.018857 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM/Contents/Resources using Guid(7189c95df63faca40b9350cc695c7330) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c282aa05144b5b9359cbcba8f7552fd5') in 0.007338 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM/Contents/Resources using Guid(32d1858b02edb8f4499e263730a9b4b2) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c7997584916f512124ff10ff6984bbca') in 0.007186 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkPitchShifter.dll using Guid(529cd5695c418f547926992a8a29fd9a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '15c42782ea6fc20d064f220ec1c0b7cb') in 0.021173 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkRecorder.dll using Guid(d28f07147a3b7494f9113f8a556f1fb7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '89dc27349517578e9d843a5b45df882b') in 0.023295 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll using Guid(f2b7d6ec17b783242a37da073632093f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fec3b70b67d03c0804bd8655d5924a04') in 0.022885 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MSSpatial.dll using Guid(43f1757cef31a224198511bad754ec57) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e69845bca1576973179e88970b4856e9') in 0.024626 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTremolo.dll using Guid(639963b2334adcb45925e4d96076c01f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '50cfc6cf0018d9c8dffa666cf2291474') in 0.022206 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM/Contents/Resources using Guid(73ec7a8dbc610d448aa3647aafb66515) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6abe1ba2de3141583361325fced89151') in 0.007642 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll using Guid(b37fbd95e8ff34944b5a722e766d3e30) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0b59faf30704361e3d2959816a5344e1') in 0.015148 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkReflect.bundle using Guid(e3922de73c5da6f4e9c9ca2feaa3f1cd) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkReflect.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkReflect.bundle
-> (artifact id: '5278445002a99968d14623219be75e59') in 0.023374 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSynthOne.dll using Guid(0426feae9be9a7648b07215fd534ead1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1626f5bd118b14d7b1fe3a700eb60f2e') in 0.022601 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll using Guid(345db04f5e03ee045974672322911e52) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8dd9cfe70a7f33e45665388ec89f1715') in 0.012925 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll using Guid(445dbe613cc980240bc6421edf33d268) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f4d6f048d27b2b6e77dc4461a5e6b6a6') in 0.025449 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTremolo.bundle using Guid(54e2d2f3a879eeb41bbc5a83f4865344) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTremolo.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTremolo.bundle
-> (artifact id: '16a731cd3b290f8408d5635b2b26493a') in 0.023943 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSynthOne.bundle using Guid(543eddc90d747ef4a8aef1d2c9b4d7eb) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSynthOne.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSynthOne.bundle
-> (artifact id: '3ac07289af9007a304a3d71489f7c85f') in 0.026193 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkReflect.dll using Guid(b4fc2b5f16216444ab03f91005dcb476) Importer(-1,00000000000000000000000000000000) -> (artifact id: '14c07895861cb80dc24e1b3b7bd7a0a5') in 0.022399 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS using Guid(c4f327f32f99a074f8932e2fb3a64fa0) Importer(-1,00000000000000000000000000000000) -> (artifact id: '14b1377b7062cce05c0a956fb7fc722f') in 0.008852 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll using Guid(d4ce4722fda94504097067d90f8b0f5c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '800add50150a41164cbe2bf32bf76a4b') in 0.023084 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll using Guid(e45a41b4ce6507242a98ce6365aee618) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bd27484d6e359a81ed79bbd27164d3a8') in 0.020992 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMcDSP.bundle using Guid(15288e074e92c7d4eb443df6fa39d673) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMcDSP.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMcDSP.bundle
-> (artifact id: 'cf85efc6c14a4afc386bdaf33520dfa2') in 0.021211 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTimeStretch.bundle using Guid(b5aaf0148f4daa742baaee792206d5fa) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTimeStretch.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkTimeStretch.bundle
-> (artifact id: 'db79ba659984ee8e0df7fadc08f67807') in 0.019136 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAuro.bundle using Guid(b51e3926144f42d488b7466931874a92) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAuro.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAuro.bundle
-> (artifact id: '385a0089ad074b7c26008233cae02fa6') in 0.018353 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/iZotope.dll using Guid(c5c89fcfbb296054584099354d09585a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '19677bb04258d584386a5afd05fc1e73') in 0.019731 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll using Guid(c5ae46d1584a32c45afbb703d4898758) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd5a16d3d7ce4595165e816c7cbaa84c8') in 0.012825 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll using Guid(f5c3e16e98c14d2489fefad101f74044) Importer(-1,00000000000000000000000000000000) -> (artifact id: '19f0120c468274f2ecf0d3910f5802e8') in 0.011914 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkHarmonizer.dll using Guid(075938578ec60e342aedaf5695ce1102) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4af25b0838fe92945fdacf890dfabc65') in 0.013409 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll using Guid(1721318996dccec47965133d08039eae) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bbf848fde80d4588d895ca7d58018ffa') in 0.020107 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll using Guid(27db810758ba71b4baced4f416921f54) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fbe7e6b76be4e241134cd644dbf8e2f4') in 0.022989 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle using Guid(9766b367dd7f08647b9c5db76216122a) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle
-> (artifact id: '985bd9288cdc05c32f05a3f19bd7b4cc') in 0.027055 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMasteringSuite.bundle using Guid(0827e840f61d56a49a06afae554e8988) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMasteringSuite.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libMasteringSuite.bundle
-> (artifact id: '1eb53dc92ac8f5a17e1f01a71ec05f80') in 0.026348 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll using Guid(1890748a8fbee634e9c58bc667c395fc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0cf3d87cae2f8ec4a731eb77ddfd0650') in 0.013971 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRecorder.bundle using Guid(383b4b81c12c81c469498359afee35f5) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRecorder.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRecorder.bundle
-> (artifact id: '6367f58dd4d175306f72fd6237e64882') in 0.021837 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkStereoDelay.dll using Guid(48e37eeadac25ec4689c07e2e815bc4e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1e90a33f592b4a6fe4e76343decdb398') in 0.013839 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkHarmonizer.bundle using Guid(a8a027165671cc14c9e0d24cad3c4d57) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkHarmonizer.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkHarmonizer.bundle
-> (artifact id: 'ec0acca2ef5d33c967d1512af8a1667e') in 0.027044 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/McDSP.dll using Guid(a8f8b6f88f47bd749a5e0f63cfb2b0c9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2734cf739914fe844adbd4577779dad3') in 0.021500 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MasteringSuite.dll using Guid(09bb179c610001948b8b027c7356b61b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a4dee26c5cc0d794f26bce92a9102f70') in 0.020311 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/iZotope.dll using Guid(6934714f110399d4699d5ffbff923aaf) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b318a3667d190585897763184102d5aa') in 0.013381 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll using Guid(799f6f35ee44a174492ed29396a3f580) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0d9a1ebde23fb49af7dedca68debe638') in 0.013093 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSynthOne.dll using Guid(6a1c29bbe9bc8944f810be120f734bb4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '244e074bf67253a063f75e54ee1b9fba') in 0.011930 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll using Guid(2be266de2b8b0f44db98b9f9ff949928) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'db36c1d1625709e9e8c8b0769e86e463') in 0.021109 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkConvolutionReverb.bundle using Guid(8bd491dc57439044da58e2838b20f55d) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkConvolutionReverb.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkConvolutionReverb.bundle
-> (artifact id: '5c4a777b66a6748ef12ba98c39215a0a') in 0.026694 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkRecorder.dll using Guid(9b9496c71bad8754d910f86bad5de5fc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd313715e74aeacfa35722618d83aa215') in 0.014060 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll using Guid(9b79c647851697145a4a57956107f02e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2039b396f6303c95679222a11db5c940') in 0.012700 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile/AkSoundEngine.dll using Guid(db59e8f4722e38347a5db727f174307a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ac5d4d5c2b19a39c7a0940fdb080c13b') in 0.013359 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll using Guid(fb103397795759848bc92360a98a0c75) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c4c046fac1109f5d662a76efb3f131e3') in 0.014534 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll using Guid(fb6953079b512904fb06fab12a7e1f04) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'df2da6899ee13252ab6c97564fdfbd55') in 0.019807 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkFlanger.bundle using Guid(3c62cfc81379c8b489494bb6cbfaaec8) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkFlanger.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkFlanger.bundle
-> (artifact id: '1f32df618f7e605e36b292784ac37eda') in 0.022622 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll using Guid(6c603d359fa37874a9ac8ec439bd99d9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5a55e1df9e4fad1e9d57c4476a4e2f54') in 0.013381 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll using Guid(bc85da9ebd3038948afe5d0caa71366f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '536c35c9b9d29c4dbc3cec8a995d33ee') in 0.019017 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkPitchShifter.bundle using Guid(bc596956b8fa034419b8f6a430a7fe61) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkPitchShifter.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkPitchShifter.bundle
-> (artifact id: '07d24e3f35bc689734b1c2a86843f463') in 0.021797 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedGrain.bundle using Guid(3dc475220e5763e42b83f64a58979dbb) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedGrain.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkSoundSeedGrain.bundle
-> (artifact id: '5e7eea3ec7c4753c59a6671f99032978') in 0.024197 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll using Guid(7da95e2847982814793fb30321bfe24b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f829e3d90597272b545b036cf6f315db') in 0.015601 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTremolo.dll using Guid(9df386a718b0e6843bef19f5481a7341) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1b269f0d4e85df6e8d735bfb22d7cb9d') in 0.015272 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkMotion.dll using Guid(bd75becb5e63d9746abd22a27776e887) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c18fc4c52f8cecc61b476d8d25b29f86') in 0.025628 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS using Guid(dde6dc987e9e8ce4493b28fe6098cc41) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b1185f7412442b7a5b3596b48c4f6859') in 0.008594 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MasteringSuite.dll using Guid(8ed8a1237724e6d4a95115ccc9433f3d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c304200c369d0b0580d2c0a15d712e86') in 0.013596 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll using Guid(cee517c1fb888994cbce301a0619922c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '49c80f5f5367728bfa7d94441092f172') in 0.012288 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libiZotope.bundle using Guid(ceeaea8d90cca314983314518c617243) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libiZotope.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libiZotope.bundle
-> (artifact id: 'acb72bc16821847899af9dfe9d3326f4') in 0.024546 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkGuitarDistortion.bundle using Guid(eecb5433f0a80054285053b4c8eb3725) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkGuitarDistortion.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkGuitarDistortion.bundle
-> (artifact id: '2ee0b932259a2011b224656f43b7a151') in 0.024361 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRoomVerb.bundle using Guid(2f23c755f42412844b5292dfc84978bd) Importer(-1,00000000000000000000000000000000) Cannot set deprecated build target 'OSXIntel' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRoomVerb.bundle
Cannot set deprecated build target 'OSXIntel64' for Assets/Wwise/API/Runtime/Plugins/Mac/DSP/libAkRoomVerb.bundle
-> (artifact id: '33ecfd069b16e67f737e655acbf27b60') in 0.023194 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/McDSP.dll using Guid(2fc609f001f8daa4d84c5fe7a8a3488f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '10cfb8b8927199760bd62f9ec3dce195') in 0.019008 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkFlanger.dll using Guid(3f38c460d96153248867709e5354cbaf) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e70729ecb9e1cc3f8d9fe560bb369e55') in 0.024870 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkReflect.dll using Guid(5f37faffc4aca984baf4f89016dafc19) Importer(-1,00000000000000000000000000000000) -> (artifact id: '434394b95a1d4f9cd74cdc16f20a82b9') in 0.015380 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkFlanger.dll using Guid(8f21e57b958205c44a7942c307478b32) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f45ddb02ce886ad3d4fb6b3b1e949838') in 0.015224 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll using Guid(df04f804a382f0f4bb88958e19305a15) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c58aedc5b9ee5a25e2c2fb6c370c70ca') in 0.016232 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS using Guid(ef116131091ab7f429dad16441a9c664) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b6cac729e3b0e6675647c17886a2b98c') in 0.008876 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF using Guid(001846980051af141b67c1497c1442e2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9ea9fa85853b7d460dda96029e5752dc') in 0.007900 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF using Guid(7330354dcf183cb449bc9ba331f74e41) Importer(-1,00000000000000000000000000000000) -> (artifact id: '817ab1f328a2fa8ffb62a29c15fd9087') in 0.008562 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF using Guid(d47993611e9df2946ba49e202ba5cd35) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7e0ecc7f9ad1d68dc3d6d26bd936a70d') in 0.008808 seconds
Start importing Assets/Wwise/Timeline/Editor/AK.Wwise.Unity.Timeline.Editor.asmdef using Guid(848dec9a74fe50c4695888a9c43a6e8f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '39f11d3cb6bd7bc11b5ce834d7682dff') in 0.017567 seconds
Start importing Assets/Wwise/API/Editor/AK.Wwise.Unity.API.Editor.asmdef using Guid(e48e58f24e634f54fa5f5c71c2e12f3f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '60f800328e6ec38726e2e0d36e5f2966') in 0.015440 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/AK.Wwise.Unity.API.WwiseTypes.asmdef using Guid(65c6c64af49770547bf63d878c99e1d2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '514dc17047e929add8396417b038fedf') in 0.018086 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AK.Wwise.Unity.MonoBehaviour.asmdef using Guid(c512df062fc8de64a8c57da9318962d3) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f48f9149017a87158bf92d165c97b775') in 0.017889 seconds
Start importing Assets/Wwise/Timeline/Runtime/AK.Wwise.Unity.Timeline.asmdef using Guid(d5022d306f1f01d4c967638d8daf2762) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4d26fda13bc2a9a3eb419180be5409cc') in 0.018290 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/Ak.Wwise.Api.WAAPI.asmdef using Guid(9a38f5e9bd846d342af83ef8a6445b57) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6e73fb2af865a94f4f32bca7a044d551') in 0.018599 seconds
Start importing Assets/Wwise/API/Runtime/AK.Wwise.Unity.API.asmdef using Guid(bed19683f0ca82b49b9ca727b79f12e7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '57bff656c87d9165f22e725df9ace013') in 0.017270 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AK.Wwise.Unity.MonoBehaviour.Editor.asmdef using Guid(0f0ccd7f07636ab448c180c4124b807d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0215317af81ed74dc4275e933dd42c21') in 0.016751 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkChannelConfigType.cs using Guid(007c046c9c6d8024faade4a75c101a89) Importer(-1,00000000000000000000000000000000) -> (artifact id: '292e406a971b8fc73b3e262d798a1ef1') in 0.020583 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkWwisePostImportCallbackSetup.cs using Guid(109f14c03cf2f564fa11600e897e2d83) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0d467d6664e605d4b41f677c12e31d91') in 0.025899 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkBasePathGetter.cs using Guid(20c80d9da06192c4893e0360e05966a4) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e2170c7e76c93fb1acc31d039be85a8a') in 0.023908 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMIDIPost.cs using Guid(3058b80ddd832544dacdfaa05d731a60) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b3787879d9d49fcea8b23039adb58bd2') in 0.020722 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObjListenerList.cs using Guid(50ad406cc77247742811f119beb53cc3) Importer(-1,00000000000000000000000000000000) -> (artifact id: '52ccbd3353f324d641ced5eb2ca514ad') in 0.021852 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkExternalSourceInfoArray.cs using Guid(604354de5d1911e4fab8897c48de41f2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7cd638eec15fccbd20822250d500fa3f') in 0.022684 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Common/AkUnityBuilderBase.cs using Guid(9043b325b6c745d40bb268d38b0deee0) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2f1ea4dbd12c9631ecee789467b3ccf2') in 0.021419 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkBaseArray.cs using Guid(a063cec0ddf249a42a8b95a00dae4494) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2de4729e048f66102e2c369b9a6957d1') in 0.021490 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerEnter.cs using Guid(d0cb2e04cb472ae449c90a1ef81919f9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '49b8e9ff3f36e2f00f1e75b25f912be9') in 0.023032 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMusicSyncCallbackInfo.cs using Guid(e0f701169e1b2b3438fd222e38174aab) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a7bb4dc38b6b16d73e12eb7d956a8243') in 0.020708 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkRTPCPlayable.cs using Guid(f083758d5911c33438f0c0d1a186bf03) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c008decc0af0817b62a357782b374b38') in 0.020565 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkWwiseEditorSettings.cs using Guid(01669aba362685a4bb6b20adac6dc911) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7856b03e8a69c3cfafd2a418cb683165') in 0.022083 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseComponentPicker.cs using Guid(117a147d8b1d805418ddae8f3c1358b1) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ba17ebbb7436842b3b18ec4859aaf761') in 0.020979 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseSwitch.cs using Guid(21e5e027acd768f478ef642145ebc441) Importer(-1,00000000000000000000000000000000) -> (artifact id: '15004ae3ef8e9ae1f3f2ede1e3f03bdc') in 0.021747 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMIDICcTypes.cs using Guid(212622933f2d5aa4e8dd1cc992ae2409) Importer(-1,00000000000000000000000000000000) -> (artifact id: '85d42c3cedeb3f1dfecb1f914bd6f6c8') in 0.021898 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoom.cs using Guid(3127bbc83f3d89c469b7bc4db5a6cf88) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2f08fbbfc941c0d4ca4000d875f75d0d') in 0.023238 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseBaseType.cs using Guid(31f96c97db90d2841921e59599678441) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6e64b792a4842668b8573444c9d576c9') in 0.025044 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSoundEngineController.cs using Guid(319ad4d9c5369be44852ad674ce310ec) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a35eceb28dad7476dbfafecde8aa5a9a') in 0.027519 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkWSAUtils.cs using Guid(4107ad4e4f529f34b9b9ff66812bf905) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6a683543f0041eca58fd5310c59d019d') in 0.015990 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseTriggerReference.cs using Guid(417d72b14dec34349890d065ed37b439) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f71205ebc91359f4661c78bd7dd7642b') in 0.020156 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerEnable.cs using Guid(511488cf893233a438862dae99e8f09b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f02af48fb61a38e807619da9f58a540b') in 0.021222 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwisePicker.cs using Guid(7132360a5fa628e4796d93fb7b96eded) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3dc57a0f3b16173a44e3ff7af456f561') in 0.021163 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPlaylistItem.cs using Guid(71a9a410ce28b2a45bf943bf04368701) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f3ac9bd72cd89ad6e82211ef65a3d735') in 0.021200 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkEnvironmentInspector.cs using Guid(8153d3940526c22409fd9506dac0e8cc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a80c89d8b98452191ab02f55de6fff0c') in 0.019722 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/StateDrawer.cs using Guid(c13ab98cc98777a4aa18917b4e0507a5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '937c2c54f413e728c8f91dde3f7021a4') in 0.021174 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerMouseDown.cs using Guid(e1c49d63c4037d543abec458f0152788) Importer(-1,00000000000000000000000000000000) -> (artifact id: '45e34d1d335ee6531972743fce6341e9') in 0.019578 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseTreeWAAPIDataSource.cs using Guid(f11fd1f82f40cde40bd6f3dc694f0cad) Importer(-1,00000000000000000000000000000000) -> (artifact id: '31290f5507ae87e0be39f3664a4f1772') in 0.024228 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Mac/AkMacBasePathGetter.cs using Guid(02f5b8911f03424438d27fe3c893bd29) Importer(-1,00000000000000000000000000000000) -> (artifact id: '71b54607d4bc62c53dfb1ae8e33dbe42') in 0.018554 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkEnumFlagAttribute.cs using Guid(12815882489972548b439ed149a55abc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd089497f0c31236b67125860b9335fe4') in 0.019411 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkSwitchInspector.cs using Guid(22fdc9c6296efd342a2ca8c9a58c4d01) Importer(-1,00000000000000000000000000000000) -> (artifact id: '92fef54f5c46871ba83b41fa215e5f12') in 0.022084 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMeteringFlags.cs using Guid(52c4707aff3b62545b1ad3ed2a18fd3f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '84f5055d4d9bcf6ddb39fe769872ad30') in 0.019645 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkDiffractionPathInfoArray.cs using Guid(521e57fa2875be84d814c9f3846bb7df) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5570d5fe97c3b14db8dc0b7153e68447') in 0.016644 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObjPosOffsetData.cs using Guid(82774059dcd140c43823972fccc7ab20) Importer(-1,00000000000000000000000000000000) -> (artifact id: '890fdfc7f3cefe3ce65bd419cbfde543') in 0.020367 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs using Guid(92abd0f0ea67c2a4199e67aa31baa970) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e6f422aa4702fd00233a80e5c5a0f4af') in 0.020131 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkFloorPlane.cs using Guid(920c933f9dc9f8648af4b90486f288df) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'faa41bb526c91e23f780c392e26618db') in 0.022306 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Windows/AkWindowsBasePathGetter.cs using Guid(a22b7d5cb572cf74b9d57921a556c99a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f65ab33a011cbaac259e283b4d763af9') in 0.016856 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMultiPositionType.cs using Guid(a27d16b9664cc35478a38e254d5a8841) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f9aa62e810823d1ecd246f9135c3f154') in 0.022852 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkEventTrack.cs using Guid(b2ad4367f9d2a6144b6509fb6262618e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '15f3b57fb8f058cf74a1120011d88506') in 0.019944 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDurationCallbackInfo.cs using Guid(c27a4848b9780c846b372e5b82846ddb) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5eee7bef0ceafa89f6bb4712881175a2') in 0.027801 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseEventReference.cs using Guid(c28fd38a4769acd4f8e10811435009f0) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fb8b826f0530904782688d1a47352126') in 0.021633 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkAmbientLargeModePositioner.cs using Guid(d2369b908fe8cec429778dacbd57204f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7c3c141cb26a4d3316ef5f1f87264139') in 0.017114 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkCurveInterpolation.cs using Guid(d2a7fb01aa09ee04eaa25dc47dda53f9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ee23c933661570c05dc7a4107790391a') in 0.015787 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkExternalSourceInfo.cs using Guid(030184741e7694b46a6409982bb8808a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bb4cec66537e56255e7bed53e4bc8fbb') in 0.020819 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkRTPCTrack.cs using Guid(0362438015c06fc42b5a5657ec4c9c6b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '24fc4399ac6e893bdf1debc0c74a34f8') in 0.017507 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDiffractionPathInfo.cs using Guid(43e486d7dd8cddb4e83474cef45638e2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '038c033e9cb6b290323f7c864a214c50') in 0.022942 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseTreeDataSource.cs using Guid(433558af1bf3cbc48acc887e062d9036) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8d3839ce25eba43eb0a1907576242f30') in 0.022700 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkTaskContext.cs using Guid(43957f9d2b7281e4b912e7d95c95cfc2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '372b54c3165169506d1afba3e4255e51') in 0.019403 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseAcousticTextureReference.cs using Guid(6342b59e379ed674ea7ca1b8646995d5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2be4134018ee90e51cac392ef9ab564d') in 0.021215 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDynamicSequenceItemCallbackInfo.cs using Guid(73f5ac08c06a2eb4daad63aff4033517) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd7449cc802756cc0f77a9c0999606fb1') in 0.020148 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTerminator.cs using Guid(73de942bffd724846af0c1b70702ff3b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f2920310a931f2a0578e9b5f4855c613') in 0.021190 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkResourceMonitorDataSummary.cs using Guid(8343e39874d39d04bbcfb54f3979590e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f46c49dab7eb82b5973873afdd32e738') in 0.023608 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkCommunicationSettings_Mac.cs using Guid(83d5b877da0c21e4081539dd41ac73ca) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b75bc13da72225cea085c0f230182ab1') in 0.019788 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkTriangle.cs using Guid(83d9264f47df9da48a60fd480e73e81b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '00de2ce807c455ad5070ebaff5506313') in 0.022007 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMarkerCallbackInfo.cs using Guid(9313c32b8f579dd45b4a243da06e8e5a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0945f889f6a5ab8d1598179edae2c3af') in 0.024577 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Windows/AkWwiseMenu_Windows.cs using Guid(93fe601e48e2ce246801fe6b4086ee7a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b83057b4852a96c6f6ab30c923217963') in 0.018110 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkDeviceDescriptionArray.cs using Guid(b3814cc2ea7a8354c97914cadece2e18) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fa0188815eaaf96b518bca0e82993bf0') in 0.023604 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPlaylist.cs using Guid(c335127586438cc4ebfda2a71856d29c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cf168f3c6712d8a562cf49c4dfbad9f4') in 0.019896 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPanningRule.cs using Guid(e3f7b45046a18f04886a316263808ac2) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f9bac26d84c985be80c810622ad80081') in 0.020615 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkShowOnlyAttribute.cs using Guid(f3f4a442b10336c42a9a4b488ca09c19) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3b93a536d05b20aa4264f776380de2d8') in 0.020173 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerMouseEnter.cs using Guid(f3862cb13b6085c42a7f651ab1ec3283) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5c8cd67d8c40b00a517b94c3701b98ef') in 0.018637 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/AcousticTextureDrawer.cs using Guid(14e272ea8ab9fa34393727c7cd980ebe) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4c72b6cd9923813a1ad26f61d32946c8') in 0.018514 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkThreadProperties_Windows.cs using Guid(449d99eea7ea55549a0879c2f414cb96) Importer(-1,00000000000000000000000000000000) -> (artifact id: '96858d1f6ef922866fe6ac0a2132b715') in 0.016684 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseTreeView.cs using Guid(444fd3c2ef415f743925fbc71b7897ae) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e4273231941b1d3eb838fc37c41ae4a6') in 0.022449 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkXboxOneUtils.cs using Guid(543a0dcf23a14ce469d737a813ec02f3) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f12d19e1ba98fd44e8fe1e5f343fc2ac') in 0.019296 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkPositionArray.cs using Guid(546f0411d715ca649b0c5a02b47dd2cd) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a1608ce29f1b4ba575d01e720ce20c99') in 0.019089 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Mac/AkWwiseMenu_Mac.cs using Guid(646784e22a8fc6a4289d90eb9ff53963) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd62456442ace7401baedc561d7b69165') in 0.016900 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkStateInspector.cs using Guid(74c0d97d07841fd449b8781990eddbcc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '227f1ca9e4ed45163e48d2af1729a459') in 0.018040 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkChannelOrdering.cs using Guid(74885f827ac7dec469ad063087305069) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f828c2954041b2af18d30338670990ea') in 0.019397 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkEventInspector.cs using Guid(741a66882c4ee594e9b66b3bdcb964b6) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7edd8548f6a276da0e0597813401d34b') in 0.019611 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkBankCallbackInfo.cs using Guid(9430f0313ab409947a36b871ab3b8637) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5237a70fdf861e7033c5261eafc4d784') in 0.018807 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkBehavioralPositioningData.cs using Guid(947e3f66556fbc847b53f1d51cd474a0) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd79080bee36cf81ed325dfa3e1ae8f04') in 0.018877 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkImageSourceParams.cs using Guid(a4d0b458d6d51b1429c94a3577229c35) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6ddda4ae57f1e5c6e3c5122f0c26afd9') in 0.020135 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkConnectionType.cs using Guid(b4e648efd63b9ee4eb5b4feeaf951682) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f3fe664fb8a639d4749ffb7fe78ded20') in 0.022074 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkCallbackType.cs using Guid(c436d67647ec9cf48900b1b70e9a5b3a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3fb352713a4363d4ae039409a7a8e194') in 0.018824 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkChannelEmitter.cs using Guid(c437b4fc61fb33f4aa6c94da076e72fc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8eaad10a7d52deeac2f05f0bcd9eeab6') in 0.021200 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkEnvironmentPortalInspector.cs using Guid(c40d61e0ce663c440bd762cdd7a4ed03) Importer(-1,00000000000000000000000000000000) -> (artifact id: '210a19bd93b061d8fdca3b6674a979ec') in 0.026042 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseAuxBus.cs using Guid(c41f9afed4595204bac013cfc78894e5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '93d79bb720091a4340936532294864cd') in 0.022239 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkImageSourceSettings.cs using Guid(d4b66e79c658fda4699a3a7b078d5f86) Importer(-1,00000000000000000000000000000000) -> (artifact id: '36f248b9dada77e2193280a21a12f79c') in 0.020751 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkCallbackManager.cs using Guid(d4f779987842e4a40ad03fac8c6ca91a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fd5ff27b32b84200e85f3e8a6a121fee') in 0.020934 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseEvent.cs using Guid(f486f02a4d5f74e4fb54e5fd711d84dd) Importer(-1,00000000000000000000000000000000) -> (artifact id: '92592193e43dc1684d5e66ccf6557fae') in 0.020016 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkWwiseFileWatcher.cs using Guid(f47b8452dbed372478b55b34e8aa1c99) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9c065561bb1da428b5104fb24bc2e80e') in 0.020612 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkInitializationSettings.cs using Guid(f45c7d0f8d688d543a37415b2388f6bc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a927fb7d5c29cee89f3eb0dd43ec2cb8') in 0.018538 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkRamp.cs using Guid(f46e8b7d10b4ea84fbcccb34a1c11da0) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5971419e01d5ef4b6812537447f37efe') in 0.019661 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkLogger.cs using Guid(05d02ef73ed180044b5f9563b85c433e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ffb32c208fb39243bc625b244384c7c8') in 0.020042 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Common/AkWwiseIdConverter.cs using Guid(05920b2cbb530c44390b1480f1d00788) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7f692ea65009bf94927915a43c668e2f') in 0.019908 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkActionOnEventType.cs using Guid(0599c3f9f21a6884f9899f43fd0c211b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5c5ab2245670c8796fac17fd69001f04') in 0.020642 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkVertex.cs using Guid(15afc67f7e6e6dc46bce18e82f6f655c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f82b48aa01a7b2e4639a9c9a94ab1469') in 0.017933 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/SwitchDrawer.cs using Guid(25135c6f1be6e964e999c09dcd4e70bb) Importer(-1,00000000000000000000000000000000) -> (artifact id: '35db3dafddb890b85b9502a90d9470f3') in 0.017238 seconds
Start importing Assets/Wwise/Timeline/Editor/AkRTPCTrackInspector.cs using Guid(25dfe9a239c02bc4992eb1ac62517883) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5472943e1172b243f55419fb942930d1') in 0.017304 seconds
Start importing Assets/Wwise/API/Editor/AkPluginActivator.cs using Guid(3570504b419459e48a3295717b797890) Importer(-1,00000000000000000000000000000000) -> (artifact id: '55c774bb381f5279209fda97d1775bd0') in 0.021487 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkObstructionOcclusion.cs using Guid(358016340830c7b4d88e166a63e4cf0a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7cc4cc23ab5c2aae6d3cc74ad1615507') in 0.020247 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkUnityPlatformSpecificSettings_Mac.cs using Guid(45761c13cb661e4408ec87f5c23c41e7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4950812857831eb1b56682cbd9928ceb') in 0.018736 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkSpatialAudioListenerInspector.cs using Guid(453e012b16f67d24d926eb1f15017de6) Importer(-1,00000000000000000000000000000000) -> (artifact id: '37b6d21485791d46d713c3a171199bbf') in 0.018696 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPositioningData.cs using Guid(654524c6ad7559d47ac3e27b95b4886c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f3e4bf7bd3e90775ed3ef2018e3eac2c') in 0.019793 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseObjectReference.cs using Guid(657688bc26ef50e4c922d95410472b71) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9f98d89cdec7025de867c28cb0a2d9b4') in 0.020413 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkGlobalCallbackLocation.cs using Guid(65e81e006c32a8842a14a8a103e6ef2d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0a9ac3c85cce9333fcbefba6b5b55ca4') in 0.016673 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEvent.cs using Guid(655c336f108314c419dfcb11fd2b6b1f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b0c697742072740ba182fcb53d53afd9') in 0.019852 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkWwiseSetupWizard.cs using Guid(7505656a042b9fa41bb288d1d812d8e3) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4ae94e5c6a87d678cc4e89e305e3cd6a') in 0.017228 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerDisable.cs using Guid(85e8341ba7266c341ae77850eedce2ea) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f292f12963dfa153e1a5ae2a70a8aa0e') in 0.019496 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkTransform.cs using Guid(b57c1914db6cfc44c98f77a28ea49a86) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1efa7a8ab4ccd8bfcbdd5ccbcdeb27c4') in 0.016139 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/Ak3dData.cs using Guid(c5cb603ecaa4daf44a0450a288926a50) Importer(-1,00000000000000000000000000000000) -> (artifact id: '647caef23d8c1503e1bc6d1abc99031a') in 0.016990 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMIDIEventTypes.cs using Guid(d5d4c757ef6206040aa966ccdc9f4373) Importer(-1,00000000000000000000000000000000) -> (artifact id: '98ce4fdd5d469bf0e1753ccd38ab7c05') in 0.019394 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioObjectDestination.cs using Guid(e5bebe8502a32334984e574dc50eeb94) Importer(-1,00000000000000000000000000000000) -> (artifact id: '49da8d3aeec2b0a6973ee9cc6222c15c') in 0.021638 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkSoundEnginePINVOKE_Windows.cs using Guid(f5fdb03edfa99f14690c1c1b7e4ec697) Importer(-1,00000000000000000000000000000000) -> (artifact id: '72d9abe4fa542cd4375164556ec9af32') in 0.031058 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkCommonPlatformSettings.cs using Guid(06f40aff6d3b2fd4db5f6ebe0c49dd0b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bb4c7c90b74d8a3c2f67885d975d4773') in 0.023013 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkUtilities.cs using Guid(16d10bace1b6d3f4bad372966a371ca1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9a48561c9e00cf56c4c80f8e99149fef') in 0.025938 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEnvironment.cs using Guid(26ceb1cc3da84c847aa2737d4d65f725) Importer(-1,00000000000000000000000000000000) -> (artifact id: '67efeb01f0bdf387c588b7c278fa1c1a') in 0.022394 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkObjectInfoArray.cs using Guid(36e09216757fa664a8839ba59c149db8) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c5984737100baff77bc929d767fede42') in 0.021253 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObj.cs using Guid(4650936bb62036d448dc20a15d3bb32e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fe4d611b29c7a7121bfbaae94e9f7be1') in 0.018146 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkPlatformInitSettings_Mac.cs using Guid(46610bcad44173047bb06e46139cd9ab) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c6d676e8248ae7c2851b08e98829f07f') in 0.020466 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkUnityEventHandlerInspector.cs using Guid(562c45a5d3dbc9a409f75a960098c15d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9dae2878f9a6a3dda2055a46c8fcfa12') in 0.021842 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSwitch.cs using Guid(b665b49d63c8e9d4da856616f23376ee) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7514b16d8c0a6bf8e62dee1ae38e36c4') in 0.019521 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseCallbackFlags.cs using Guid(c664e8953fda1ef4aa3c3b58bbf8d0f2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '27c7dd730042848e09aec6a44392b13b') in 0.021596 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoomPortal.cs using Guid(c6ab5f292a77aa245bbb2429d56fa5cc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9a418085915579ada3d2963c10d82253') in 0.018794 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerMouseUp.cs using Guid(d60997cfec30768488f975bb6268b84b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a86b497fb6d4cf242fd5ee3c8d0196b9') in 0.017971 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMusicSettings.cs using Guid(d64b54da6a06a7248ae8c9ddddf4994f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e1a98cd9284d12fb1796fe9c125c6ca2') in 0.019250 seconds
Start importing Assets/Wwise/API/Runtime/AkSoundEngine.extensions.cs using Guid(e6be38402e31ff843a507807c877f052) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9ad3a3de376ea5928f0301da4c74e3f1') in 0.018589 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseXMLBuilder.cs using Guid(f61b1bdd25f19294aa79239f9a8197c1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0704f89078b170cda5604d56c93f92c3') in 0.018876 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseStateGroupReference.cs using Guid(07298fbf00516b948a16a2cc46fae2e3) Importer(-1,00000000000000000000000000000000) -> (artifact id: '59a2787375f799d9efc10c3fc83afcbb') in 0.015865 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMonitorErrorLevel.cs using Guid(27d1bf6334f9b014da321da070aaf542) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a911ecd463ed8600ed4ea2d25111d89e') in 0.016327 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkAmbientInspector.cs using Guid(274b4a8813769a74a81f4403bf8877d9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6adf6fb79971f7ee0a91bc389e6dc994') in 0.019471 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers/Windows/AkWindowsPluginActivator.cs using Guid(47d91001d6e91a1459f88f25d3c1a88f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '726a0ea194220e0ba60d5276668c6c33') in 0.016503 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObjPositionData.cs using Guid(67f3cea28bf3032489ed8ecde9513a5e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b40544f1a51057e4ce2bbdbadf5ffba3') in 0.016951 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseAcousticTexture.cs using Guid(8714d4a36412f674dad47dc5b5b20179) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a3a58f75a90d1dc34cbf673bc25edf5e') in 0.016370 seconds
Start importing Assets/Wwise/Timeline/Editor/AkRTPCPlayableInspector.cs using Guid(872bc480df676664a9eae390d456726c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2b741f80098a34804994cced54403762') in 0.015604 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkRoomPortalInspector.cs using Guid(97a072e200681fe41b3f89ac1401c4d6) Importer(-1,00000000000000000000000000000000) -> (artifact id: '23b98ccf69e95a41997623ee154d3a77') in 0.017281 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioDeviceState.cs using Guid(973885911cd7ee84abb3c1782a52d580) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ce7284501c426121977f99ac958fbdc1') in 0.018488 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkRoomAwareObjectInspector.cs using Guid(971bc14b394cf224faed4eadd072a2b2) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bc12d205ed80e924663c9355f0f76b8c') in 0.020226 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkQueryRTPCValue.cs using Guid(a7c1cdcdfc9e72f48ad08efe6987a693) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ccd965290a3f6f6f7d6571fda944b775') in 0.018929 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkMemBankLoader.cs using Guid(a7fdef5a193f2d84385bc895f813a2e0) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ca3445ec5360fb2f2ce404cb00b859e2') in 0.021390 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkSoundEngine_Mac.cs using Guid(c707ec97e5f60574da4a71837918df97) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bed6862305cebab13dfc1aef6013f4ca') in 0.021576 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkTimelineRtpcTrack.cs using Guid(d7efbfa879114664ca4deac262717d72) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0de8327623d7d91e57bb613df2715e40') in 0.018093 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseProjectInfo.cs using Guid(e7395934b6d72874d8e8e8b988c26079) Importer(-1,00000000000000000000000000000000) -> (artifact id: '32ae13e66e97a0c1555cf4420204e1f7') in 0.021788 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/RTPCDrawer.cs using Guid(e7cc7380b9ce1b94291234938ba16a1d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1763e05463a3f63eb05fd4fade686025') in 0.017143 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/WwiseSetupWizard/AkUnitySettingsParser.cs using Guid(f7fa7fa3a536a8c439aee8d2a13fe7a6) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a7b39f27e6003c5d7375a6311dd41c57') in 0.020394 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkBankManager.cs using Guid(0862f1a8482942146990d957a7820c55) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2c936f695c280bd8d8a636aad5b26c56') in 0.021681 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDeviceSettings.cs using Guid(188002663e3d81e4f8749c84e763fd0d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b48685e0ec6a39e320db7586692c55fb') in 0.018437 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/EventDrawer.cs using Guid(18ed5d8c605a7fd48b71b3e4609e1608) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e2481f09bbcf23ca0bfc357bba6f35e1') in 0.016522 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Mac/AkSoundEngine.cs using Guid(2810fb8b0fa8d95478044b7986d88d0a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '19ea37543c048fd54b241e5a425976c1') in 0.017574 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkChannelEmitterArray.cs using Guid(48667a46db4344c4ca68744a3080fa4b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '73a0f89a4e18eadf32e8d18bdd79bf5e') in 0.017091 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkSourceSettingsArray.cs using Guid(4847f6876d948414b9790139c2529c8b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1f1a27658977dc81045cbcdbbd4efc01') in 0.018172 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkIterator.cs using Guid(788816339dc28cd46816e0b349df15fd) Importer(-1,00000000000000000000000000000000) -> (artifact id: '259aad6b38613cefa07e597a8ba466c3') in 0.025946 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkAudioListenerInspector.cs using Guid(785ee2cec718aaf46a06c606cf21162e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9a15153a8807dbad535a837fd65f5e27') in 0.018848 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkCallbackInfo.cs using Guid(78cec4791fcaeb148bcf8e9f6a5136da) Importer(-1,00000000000000000000000000000000) -> (artifact id: '20ced036f81b08bcb2485c25abb8001e') in 0.018498 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseSwitchReference.cs using Guid(88306ad3eef7f6e4fb582efdd9507dab) Importer(-1,00000000000000000000000000000000) -> (artifact id: '84ca1e08ad36cd07758ef332a5a2e887') in 0.018953 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseAuxBusReference.cs using Guid(98a011f836f1c80429f682103bf05eee) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a797b062995d35dce6cdf515f9f02b42') in 0.015674 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/BaseTypeDrawer.cs using Guid(98ec3e7677db4484b89cecf14c8b58b9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a1b39650de25811c2767fa4c1c57d9ac') in 0.017793 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSurfaceReflector.cs using Guid(a8d7fa96bf761c04aa9245cfc76b8294) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ce2b2a9572fda8b669a3b6e048527856') in 0.018374 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoomAwareManager.cs using Guid(a819d7e3d18998c4984aa770f834bb4b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd526d651d44a2a1bf44bdc41fca87d88') in 0.019478 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/Ak3DPositionType.cs using Guid(a80b7ea6e9155f0489c024948cfac2c1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '36be4bb76a36ccdfde0a49a220864a73') in 0.018870 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/Ak3DAudioSinkCapabilities.cs using Guid(b869fff49dd63a441ac41a4625333e64) Importer(-1,00000000000000000000000000000000) -> (artifact id: '823366ffc06ef15d10df16cf3f367040') in 0.018908 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkEventCallbackInfo.cs using Guid(c8f485a1aa7c81947b889e54ec00b1d7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6900762258d34f67b7157d57da42c586') in 0.018654 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMonitoringCallbackInfo.cs using Guid(c8f75ddac749b8b499f3b827ab869448) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3ccbe0cb5cdffbd671bf710cae4da134') in 0.015284 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkReflectionPathInfo.cs using Guid(d8e0f8272be166946b50b320cf4001a9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fbd14771fb55ce3f7e2c51654e3ba1e2') in 0.021831 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSourceChannelOrdering.cs using Guid(e8a007e45de54ae4dbdcc602209c3c62) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0ea3a2c152ba5afbdcc8116959d0526d') in 0.023113 seconds
Start importing Assets/Wwise/Timeline/Editor/AkEventPlayableInspector.cs using Guid(e82b60787fee4aa49be1cf6cad312754) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bb5bda47276b324433d4a8ca73f9df3a') in 0.020070 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkAudioInputManager.cs using Guid(f870d1a44bfd9274cb7c8aa5a5b6e241) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2a3952539bcc041c77ab6a14c9f1576b') in 0.022721 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkTimelineEventPlayable.cs using Guid(f84aa420f4ce59f448353880b65f53ad) Importer(-1,00000000000000000000000000000000) -> (artifact id: '176f546f18c29c0dd9588e898b3bace5') in 0.018884 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/Wamp.cs using Guid(19d6eb2e43549f743b99695378b39172) Importer(-1,00000000000000000000000000000000) -> (artifact id: '135f31a23a77df888343c7155329864c') in 0.024329 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseTreeProjectDataSource.cs using Guid(19f692e6e44f51a4b9af12dfb3175842) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3f5842022e4bcfdd2b272a294b2df381') in 0.019767 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkExtent.cs using Guid(39a5db080e1525843af66a6f354e49ec) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0eaed9dcee8986c780f7c7c61ac1bbb2') in 0.019531 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerCollisionExit.cs using Guid(6982eb53e2edb02439ab4239c75efbf2) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f45339c1e5a270257ed077569374d653') in 0.019716 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerMouseExit.cs using Guid(79c0fb55768c4934eab46a2f1f17786c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '02d38aea5e44ca20aed726126aff3279') in 0.017546 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObjEnvironmentData.cs using Guid(7904c1eca61a0234080285eaa97bf75e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '98d6590956497ba97c27e7b4fc8c2039') in 0.017937 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkRoomInspector.cs using Guid(99226bad888a6944f836099ba07c19da) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b6fb8288fe7708aac28aab052f7f3eee') in 0.019459 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/BankDrawer.cs using Guid(d98171f8b34e30047b0e733733e236ae) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b86c18b2dc3ecbe1d1e2c5338b5de1b7') in 0.017337 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkBank.cs using Guid(d99fb8481fc93ec4a8b1f67710c9d33a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a74076ad681f2be31d94e73e9f5491fa') in 0.021684 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSegmentInfo.cs using Guid(e907ab16d46bc2d4a94a1285686963e2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '04258b915bbd37a79d97bdd32a138ff8') in 0.020820 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseBank.cs using Guid(e92c0a89a6dc69c41bc516cfa351d188) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'da87d7e4149bc93b8e18489f685acd7f') in 0.021383 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkOutputSettings.cs using Guid(1a7a6daf52e178744a9d646946e2e55c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '64378486ef61490b04a41a404864fd9f') in 0.020845 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkObjectInfo.cs using Guid(1a4b1cab9dcb5d44b89e5c079f78b3c9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cbd88e54e341a21499cee68ad87f2ddf') in 0.019290 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AKRESULT.cs using Guid(3a80a4a30c63b5f4e859d3c34582a79c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bbc45881774c5b444e87352a120b86f0') in 0.019017 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerBase.cs using Guid(6a71cad5ad2e9934495aec0a86c204ab) Importer(-1,00000000000000000000000000000000) -> (artifact id: '27743a6589d34856a1459ff900f96bed') in 0.020556 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkObstructionOcclusionValuesArray.cs using Guid(6a8599b3d1566e149a78c5804f044244) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b1a7efabd4f4c97afef0bf8693c986da') in 0.021000 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDynamicSequenceType.cs using Guid(7abcb88d13b23974dac21f237cdfd9cc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'da513da1cd781f76a21a4920566019c2') in 0.020877 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkChannelConfig.cs using Guid(8a503f9c6fdd0fa4ba88469a54199a8f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd7d84c03b06fbc789fedda1159d3db9d') in 0.018797 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkBankInspector.cs using Guid(9a94fd6a8c31d904d9def1b10dfc1950) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3a1fd8d03815e18b2c37f69cefa85493') in 0.018654 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseTreeViewItem.cs using Guid(aa72f7013ab98dc4599ceef3439455dd) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8ca0eccd6abd1702db518116cc814d61') in 0.019935 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseTrigger.cs using Guid(aabbbbc792b40d24da172ed5b49ac1a3) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a5824c9c15333a0d544a1f4f53686c04') in 0.020453 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkBusHierarchyFlags.cs using Guid(aa9ff2e1fce81c145a486078e9aec7b2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9abbddf6cdd0749d5283b6e93ee1085a') in 0.020697 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSpeakerPanningType.cs using Guid(ba5dd07a3015d3f4f843ec076837fbec) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9aefb984bb25e8e9247b50bdefe84104') in 0.019623 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/Ak3DSpatializationMode.cs using Guid(cac304ee39bd7ea4a944b1507da393fd) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bd17e70f1f579b2c83b27aa30cc12374') in 0.020573 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAuxSendValue.cs using Guid(ca05e691fcd737342a61063f758a4cf4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '80b7ceb8b1892044d0bc437a3d6454f1') in 0.017954 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseBaseGroupType.cs using Guid(0b210a31eb703344d83f99d2e5783392) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd7a075c36187ce0cdc653f339235a21f') in 0.018267 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkGroupType.cs using Guid(1baa985c1d9ff8b41ad502657bbf81db) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd78130f3702f0dc6c3d44d3b3cc74f4e') in 0.019330 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseRtpcReference.cs using Guid(3bf0536d89dad2641a4118e89f8c0bd1) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e73a74465b44d6b299d8dba9213602d0') in 0.019424 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoomManager.cs using Guid(3b34e1689faa81c4da1bcb05da8c6a72) Importer(-1,00000000000000000000000000000000) -> (artifact id: '266ef4a2a6b9214eb7dd626c602c883e') in 0.019824 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSerializedCallbackHeader.cs using Guid(3ba6b9099960346458e779ee06c43de4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3c0982d932a2a3506ba6bbc4c8666798') in 0.019093 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoomAwareObject.cs using Guid(3b5a159724e1c2b43baa9dd07fd047a0) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f14968c250698d31ec8476f223478a7d') in 0.018631 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkCallbackSerializer.cs using Guid(5b519b88cb921454a873f4ef76882153) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ccb650761bb02ff84998bee3427af071') in 0.019564 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkObstructionOcclusionValues.cs using Guid(5be3dc41b7b8ddf4b86af4c258e24e41) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cabcab2739dabaae275bcc2d83b52f63') in 0.019670 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Mac/AkMacSettings.cs using Guid(6bfd24eaf73a06249be1e1e850cd8bd3) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd27cc2d9f054a2b55fcf3a87468fa58d') in 0.016416 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseRtpc.cs using Guid(9b22edba89bedec41a33e2d9425e7c70) Importer(-1,00000000000000000000000000000000) -> (artifact id: '776b93b40924847271549d98965d0344') in 0.020865 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPositioningInfo.cs using Guid(ab68dd4f338d52a408c3861b1b433db7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3aaf4b5529755f839d33b50213052320') in 0.019330 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMIDIEvent.cs using Guid(bb058178b49df8a42923612b43baa3e1) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fc002e75463bf359cd787146e5a572b8') in 0.019193 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkPlatformInitSettings_Windows.cs using Guid(dbe6ede26f3af2a428da8178f13bd2a9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8c612af8aa606e836e1e8387a95f51fc') in 0.019228 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkGameObjListenerListDrawer.cs using Guid(db47217935ed32a4c97c0a06a8f94952) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ada80b4cc8120f5cb61f4c3e8d77deb6') in 0.020778 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkTimelineRtpcPlayable.cs using Guid(eb51081b4ee3f1a43af815eea647ef6c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1b1b400c07de720262a112e9d32297d8') in 0.017635 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkSoundEngine.cs using Guid(eb3c438c1662ea34093c3d4190725c21) Importer(-1,00000000000000000000000000000000) -> (artifact id: '495df665d0f1b09ab6c113ae9bc45b85') in 0.021499 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseStateReference.cs using Guid(1c78007ce3ce2e641b54ade2512992fa) Importer(-1,00000000000000000000000000000000) -> (artifact id: '024268c8f55a9194cb7752ac5e0d2f93') in 0.018682 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerCollisionEnter.cs using Guid(2c51a1668a5f1ea4193778fba84070e5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '72144bc78dcdd3fc2db5e929b406b17f') in 0.019323 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEarlyReflections.cs using Guid(2c3ae0a5db1852b489207017de65ea75) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6c2ba0195a368ec7bcbd6854f2b98384') in 0.018487 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseSwitchGroupReference.cs using Guid(2c1ec2e7f91e4be438b5ff30ce02d53a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '66d6283f9a78ad2b5762d8ecb52e5a61') in 0.019402 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseState.cs using Guid(3c2189aeb7c6e5f4793e10f86a910f64) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2c6b7ad7492492ba5a7ba3ec810e20b5') in 0.021017 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAcousticSurface.cs using Guid(5cce12d9d222e744ba9249aa8718050c) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ac456bf4f1f1eeec23df0bfaab990f82') in 0.021980 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers/Mac/AkMacPluginActivator.cs using Guid(6cad6238938f80b46b1da7d514ebfc2c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '39bde8a313667b9b0782e29358bbe92c') in 0.019130 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkStreamMgrSettings.cs using Guid(7c83f956e2b641b4ab0dc0821147162c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '618fdc14109441ce0d64027aab566811') in 0.020509 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkWwiseInitializationSettings.cs using Guid(8c7c56eb4a8ffdd49ad089e7acdf5a4b) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bc78dd0c2ddcc7755d3ab207358e76df') in 0.021701 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkTimelineEventTrack.cs using Guid(8cbc36453a9e03547840e646ac5649ca) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1acd09d00b880ab7fbd4076ca04b8f7a') in 0.019506 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkGameObjectInspector.cs using Guid(8cec0b00c2ddd2f4cb65ad6a89a75faf) Importer(-1,00000000000000000000000000000000) -> (artifact id: '72a0b0e8de309651109d7282070d5987') in 0.021498 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkAmbient.cs using Guid(9c064cecc8c00604680414471eea4adc) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7070ff83a9cbe168f6a06fea45580d19') in 0.023145 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMonitorErrorCode.cs using Guid(9c076f75dc4612d41baf11aeb8db7a42) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8cc52645cb5c5384195ad4a76e4cbc91') in 0.023545 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPluginType.cs using Guid(9c5cdb36dc338f745965b7ee5b2fb375) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e727177237aeebcb4af0c7a1e51b9484') in 0.023875 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseProjectData.cs using Guid(bc51024edd18e8c4ebd26fcf9586f7be) Importer(-1,00000000000000000000000000000000) -> (artifact id: '002f7f86f3a4372933001f943e70d15d') in 0.024070 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRoomPortalObstruction.cs using Guid(bce2e9583edec1244bf41135668797be) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2a51dabd3b6452c9b7a8a1b55116f9d7') in 0.023574 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSpatialAudioInitSettings.cs using Guid(fca9c127bceb7db46a7275592c88a916) Importer(-1,00000000000000000000000000000000) -> (artifact id: '154256e64856a9ca21e86730a80ae67a') in 0.024575 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/AkWaapiHelper.cs using Guid(0d3a04e9a1668b142a8091b9f07af597) Importer(-1,00000000000000000000000000000000) -> (artifact id: '39f64da94fdc89a2237860169b182bb1') in 0.024135 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMusicPlaylistCallbackInfo.cs using Guid(0d8e3141ac727eb4aaefd406143232db) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1a6f0b3d7d8ad328e3ace08e5261b45a') in 0.023357 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEnvironmentPortal.cs using Guid(2d3892c82bda49345a24238791e2ae2a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7577d408aa14c7b7613807d1c1f0bf7e') in 0.023563 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/AkVector.cs using Guid(2d0b0ac95612bc941b40195ab0722f15) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7c3d957b2160c79c5bdc54265fd8aebe') in 0.020906 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkReflectionPathInfoArray.cs using Guid(2dbe055d28141ef4ba446ae26a5c939d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '20977e97434643b789749d744fde2597') in 0.023306 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkEventPlayable.cs using Guid(3d3fbbeba92769a4a84b3104e126bb5d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2832c1fbc86ebf80303bdbe4aec9d3bd') in 0.019622 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkSourceSettings.cs using Guid(5d94216ec923fbd44a585e97b70514e9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4b7194d737bea75e862c3e15ab12b990') in 0.019879 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseTypes/AkWwiseTypeMigration.cs using Guid(7d8709c80b823764fa6bb9b250ee400a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8722169c29535a15897f34c241972e32') in 0.022240 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSpatialAudioListener.cs using Guid(7db7aa19282ce104c9f12652114eb69d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4c0a0c5f4378f2c3714f2cefca8e5dd2') in 0.020233 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkAuxSendArray.cs using Guid(8d7688e2e59e23c42afad9ab6f27a17c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6831b539866b012b9f7699f555e97501') in 0.020381 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/TriggerDrawer.cs using Guid(9d10a5bd4d12aa0458270fe5d550dceb) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ac19585f73256116ff1e93b5eead5734') in 0.015642 seconds
Start importing Assets/Wwise/Timeline/Runtime/AkEventPlayableBehavior.cs using Guid(adb0acfecfe76e041839a0726393e88b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5de16063f836349694d7a9838079a941') in 0.019960 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioFormat.cs using Guid(ad148fb063ce1d7499781e78e5c17092) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3153746d7bac123d8248556a6f21163d') in 0.019639 seconds
Start importing Assets/Wwise/API/Editor/WwiseTypes/AuxBusDrawer.cs using Guid(bdc4b48e09ca06647be5db5e59efb593) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f5f06d2d11c6e2c1f6443331f433175e') in 0.016165 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkBaseInspector.cs using Guid(cd8a3e72260adaf4cbf8a1ae9fb4ad54) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9d4d1a94949305fb94a44f955183aeab') in 0.017457 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkInitializer.cs using Guid(cd1d8d5adaa645b40b59ba65b0b1ec4c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '922dff983dcd9fe0d655e7a0cc2a98d3') in 0.014113 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseBankReference.cs using Guid(cd1e6468e05f0f94e988da786d54d6d9) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2ece95e95defb9d44777e54eaca706d0') in 0.019215 seconds
Start importing Assets/Wwise/API/Editor/WwiseMenu/Common/AkUnityPluginInstallerBase.cs using Guid(ddc42b0df00b16245b8852f0a33150b8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '147ecf9ff0de71e99232ac4f42022f7b') in 0.020897 seconds
Start importing Assets/Wwise/API/Runtime/WwiseTypes/WwiseObjects/WwiseObjectType.cs using Guid(ddfe731e02b5fe04d9a67085e8ef2303) Importer(-1,00000000000000000000000000000000) -> (artifact id: '20dcef90639c98914fa8492c2e686a0d') in 0.020986 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Windows/AkWindowsSettings.cs using Guid(ed82aa93894cd7f48a58fa8589214c94) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bc2edbfa5ebf681555c17c7be7800f17') in 0.019164 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/AkWwiseWWUBuilder.cs using Guid(0e71e771206ca0741985c1f76aa37c77) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0bc3708a0ad7d656939eb07114404742') in 0.017850 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSpatialAudioDebugDraw.cs using Guid(0e4d9582236453349a24725832b2f17e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ce80a778c7f4f73e7f53480185591546') in 0.022171 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkState.cs using Guid(2e383313fe11d2f458cc2babd40b2e85) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c9c32651ab88bc99e519777f1b8b99a8') in 0.018853 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerExit.cs using Guid(2e6e7a8c4536b4c42b764452a76d9ef8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3c94b666a28ca1a61bcc6f5c1b14917e') in 0.019413 seconds
Start importing Assets/Wwise/MonoBehaviour/Editor/AkPortalManager.cs using Guid(5eec39c671d66ec47a15162ee479c972) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a9c92406ddb3bf0af5901852cf6e70e8') in 0.020565 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkMIDIEventCallbackInfo.cs using Guid(7ea77698da410b24086e11af339902d4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1d993714c4ea3e6e5772d00152e86d81') in 0.018453 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkTriggerHandler.cs using Guid(8ea5ffa7e75622f4c913b91602053b27) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fcc3ea2898fb2e1b6f3956097230ea11') in 0.020543 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPlaylistArray.cs using Guid(aee5c465f001e554b98e3105d3750d6f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9f18729a85dd01a749d01dd5228dba25') in 0.018889 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/AkWaapiUtilities.cs using Guid(ae3b3dc677dd65e43b21ef0048bd0c21) Importer(-1,00000000000000000000000000000000) -> (artifact id: '62b15c1487a1f41f43340ff64eb15c2f') in 0.020137 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkRoomParams.cs using Guid(bec2d4d27e0401343aa549abc09a562e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '27f3574ea90ea72c2fcfe86801845dfa') in 0.020980 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkAudioListener.cs using Guid(cedaa832b79dca74e9cf99defe15792e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8e191471e2d84925e271dcf8d83b2f1a') in 0.018833 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkRadialEmitter.cs using Guid(cebf9761e9a13fb49b082cbbbb535f33) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd8948d6b0506009a5edd61c7abf3133d') in 0.018443 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkInitSettings.cs using Guid(dee6cd6049d67674ca6ffea7ac7049ea) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a0d51acca6b168c7b9727e4c76085689') in 0.020296 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkDeviceDescription.cs using Guid(eec3d3b9df71b65409c3b2ff9244f88d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2bef577f7f258d719d344d225a96dcbd') in 0.019730 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioInterruptionCallbackInfo.cs using Guid(fe86cbb545d2e0442b197a3890c07951) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fcb87142ae812f64370f624f6a43cbc4') in 0.019365 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/AkWaapiClient.cs using Guid(0f2254543ca108e46a5383ef565a4501) Importer(-1,00000000000000000000000000000000) -> (artifact id: '556f69b12b7676a3c8bfa856d1b4d87f') in 0.018899 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkPreparationType.cs using Guid(0f1846cdbcac0b54a9c73e6ea571b150) Importer(-1,00000000000000000000000000000000) -> (artifact id: '47941ce9f7e2ec9c5e33d604892ab56c') in 0.019730 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Windows/AkSoundEngine.cs using Guid(0faa9ccafe3c5c5499e948eb7e5f8262) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a66a87dcfdad00551972c63bc7b97c29') in 0.021142 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/WAAPI/Uri.cs using Guid(1f11a48b3baa200458fac6dfa5ff600c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '117ee54fc466c705b6fb287b7f091d53') in 0.032988 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkAcousticSurfaceArray.cs using Guid(2ff8ca9ea88249f41b81eec9914438e5) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd1a1059646776c5f5c9698cf5d01b260') in 0.023556 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkSoundEngine_Windows.cs using Guid(2f2e8e517af65454886d6218e5aa1f57) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2440b4fa624fa2d37cde51f6077764fa') in 0.022385 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkGameObjPositionOffsetData.cs using Guid(3fb21d3155fec9e4ead30feec96a46cb) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1e356f6e006c5f279a0d549b1b8dce36') in 0.017320 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkCommunicationSettings_Windows.cs using Guid(4f9685fc54f3b1b4397c953775bc79d4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5b2ad94706d75544ebf64de375d582f0') in 0.019165 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkThreadProperties_Mac.cs using Guid(4fea5b04a42c6774ea803a9a3c4146dd) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5936459522f29d64ca4b3370e6155f39') in 0.020286 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkBankContent.cs using Guid(6f3f05228fdff064b8b87293a0dc5905) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8050112b90d939c2b33bbb3bc1b80d8b') in 0.019600 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Mac/AkSoundEnginePINVOKE_Mac.cs using Guid(7faf7cf62d81e3e4aa464c235edfeeb8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '23b446b06c20b06fa8608aefab64d07d') in 0.026311 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioSourceChangeCallbackInfo.cs using Guid(8fb2fbfea37af8b46aa1273e95b4c3b6) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'edaea5ee8e762cb8497b3c5e40856447') in 0.021369 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkMIDIPostArray.cs using Guid(9f635010753290d4bb55bbd7eb20991f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '615180932b7dc7555bed6ca5645f46ce') in 0.019370 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEventCallbackData.cs using Guid(bf0aa6896ecab1045a7c26b3ed1c7392) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'dda7449d02c50a13d9fefb4bfdae717e') in 0.020896 seconds
Start importing Assets/Wwise/API/Runtime/Handwritten/Common/Arrays/AkTriangleArray.cs using Guid(bf3eaffd97f1a1e4ca4607a3593a6951) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2b0598d912d57031a847ac3da28c4fc6') in 0.019849 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkSpatialAudioEmitter.cs using Guid(cfca819143302464a9b38880a76a847a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '235203d143622a7ea82f8fe0e0b9e6ca') in 0.018466 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Windows/AkUnityPlatformSpecificSettings_Windows.cs using Guid(df6df83a55745cd47967a786a963828a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd28237dbb6290dc4c62a83278b762098') in 0.016884 seconds
Start importing Assets/Wwise/API/Runtime/Generated/Common/AkAudioSettings.cs using Guid(ef891a94431f90440a466de980fa06a3) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2ac06878404f81a1549d9a19d8b647a5') in 0.017020 seconds
Start importing Assets/Wwise/MonoBehaviour/Runtime/AkEmitterObstructionOcclusion.cs using Guid(ff134f7a0d391104a911a0cff4fef80d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '444eaa72595a40ab3e60b67df0d3a38e') in 0.016834 seconds
Registering precompiled user dll's ...
Registered in 0.058782 seconds.
[ScriptCompilation] Recompiling all scripts because: Assembly Definition File(s) changed
- Starting script compilation
- Starting compile Library/ScriptAssemblies/UnityEngine.TestRunner.dll
- Starting compile Library/ScriptAssemblies/UnityEngine.UI.dll
Deleting stamp file at Library/ScriptAssemblies/BuiltinAssemblies.stamp
- Finished compile Library/ScriptAssemblies/UnityEngine.TestRunner.dll in 1.452333 seconds
- Starting compile Library/ScriptAssemblies/UnityEditor.TestRunner.dll
- Finished compile Library/ScriptAssemblies/UnityEngine.UI.dll in 1.509826 seconds
- Finished compile Library/ScriptAssemblies/UnityEditor.TestRunner.dll in 0.793159 seconds
- Starting compile Library/ScriptAssemblies/UnityEditor.UI.dll
- Finished compile Library/ScriptAssemblies/UnityEditor.UI.dll in 0.399532 seconds
- Starting compile Library/ScriptAssemblies/Unity.VSCode.Editor.dll
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.API.dll
- Starting compile Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll
- Starting compile Library/ScriptAssemblies/Unity.Timeline.dll
- Starting compile Library/ScriptAssemblies/Unity.TextMeshPro.dll
- Starting compile Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll
- Starting compile Library/ScriptAssemblies/Unity.Rider.Editor.dll
- Finished compile Library/ScriptAssemblies/Unity.VSCode.Editor.dll in 1.150172 seconds
- Finished compile Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll in 1.212491 seconds
- Finished compile Library/ScriptAssemblies/Unity.Timeline.dll in 1.257306 seconds
- Finished compile Library/ScriptAssemblies/Unity.Rider.Editor.dll in 1.231201 seconds
- Starting compile Library/ScriptAssemblies/Unity.Timeline.Editor.dll
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.API.dll in 1.454706 seconds
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.API.WwiseTypes.dll
- Finished compile Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll in 1.450945 seconds
- Finished compile Library/ScriptAssemblies/Unity.TextMeshPro.dll in 1.87504 seconds
- Starting compile Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.API.WwiseTypes.dll in 0.988681 seconds
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.MonoBehaviour.dll
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.Timeline.dll
- Starting compile Library/ScriptAssemblies/Ak.Wwise.Api.WAAPI.dll
- Finished compile Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll in 0.964468 seconds
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.Timeline.dll in 0.402036 seconds
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.MonoBehaviour.dll in 0.46637 seconds
- Finished compile Library/ScriptAssemblies/Ak.Wwise.Api.WAAPI.dll in 0.481481 seconds
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.API.Editor.dll
- Finished compile Library/ScriptAssemblies/Unity.Timeline.Editor.dll in 1.899705 seconds
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.API.Editor.dll in 0.442268 seconds
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.Timeline.Editor.dll
- Starting compile Library/ScriptAssemblies/AK.Wwise.Unity.MonoBehaviour.Editor.dll
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.Timeline.Editor.dll in 0.354368 seconds
- Finished compile Library/ScriptAssemblies/AK.Wwise.Unity.MonoBehaviour.Editor.dll in 0.420055 seconds
- Finished script compilation in 6.981299 seconds
AssetDatabase: script compilation time: 7.248767s
Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found
Native extension for WebGL target not found
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akmotion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkMotion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksynthone' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSynthOne.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSynthOne.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akrecorder' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkRecorder.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkRecorder.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktimestretch' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTimeStretch.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akpitchshifter' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkPitchShifter.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akstereodelay' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkStereoDelay.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akguitardistortion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'mcdsp' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/McDSP.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/McDSP.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'auro' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akconvolutionreverb' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akharmonizer' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkHarmonizer.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'msspatial' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MSSpatial.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktremolo' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTremolo.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTremolo.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedimpact' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedgrain' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedair' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'masteringsuite' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MasteringSuite.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MasteringSuite.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'izotope' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/iZotope.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/iZotope.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akreflect' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkReflect.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkReflect.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akflanger' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkFlanger.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkFlanger.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Refreshing native plugins compatible for Editor in 1.62 ms, found 21 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
WwiseUnity: Plugins successfully activated for Profile in Editor.
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object)
UnityEngine.Debug:Log (object)
AkPluginActivator:ActivatePluginsForEditor () (at Assets/Wwise/API/Editor/AkPluginActivator.cs:567)
AkPluginActivator:.cctor () (at Assets/Wwise/API/Editor/AkPluginActivator.cs:118)
AkMacPluginActivator:.cctor () (at Assets/Wwise/MonoBehaviour/Editor/EditorPlatformHelpers/Mac/AkMacPluginActivator.cs:7)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
(Filename: Assets/Wwise/API/Editor/AkPluginActivator.cs Line: 567)
Refreshing native plugins compatible for Editor in 0.75 ms, found 1 plugins.
Start importing Assets/Wwise/Editor/ProjectData/AkWwiseProjectData.asset using Guid(05e1997ff77133b4baba2ad853378a8e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0eb30a507ab5996f652a15689dce2842') in 0.023318 seconds
DisplayProgressbar: Populating Wwise Picker
Invoked RoslynAnalysisRunner static constructor.
RoslynAnalysisRunner will not be running.
RoslynAnalysisRunner has terminated.
Mono: successfully reloaded assembly
- Completed reload, in 1.526 seconds
Platform modules already initialized, skipping
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akmotion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkMotion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksynthone' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSynthOne.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSynthOne.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akrecorder' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkRecorder.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkRecorder.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktimestretch' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTimeStretch.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akpitchshifter' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkPitchShifter.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akstereodelay' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkStereoDelay.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akguitardistortion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'mcdsp' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/McDSP.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/McDSP.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'auro' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akconvolutionreverb' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akharmonizer' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkHarmonizer.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'msspatial' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MSSpatial.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktremolo' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTremolo.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTremolo.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedimpact' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedgrain' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedair' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'masteringsuite' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MasteringSuite.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MasteringSuite.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'izotope' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/iZotope.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/iZotope.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akreflect' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkReflect.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkReflect.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akflanger' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkFlanger.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkFlanger.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Refreshing native plugins compatible for Editor in 1.90 ms, found 21 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
RefreshInfo: InitialScriptRefreshV2(NoUpdateAssetOptions) scanfilter: ... 1 filters
RefreshProfiler: Total: 29864.335ms
InvokeBeforeRefreshCallbacks: 0.571ms
ApplyChangesToAssetFolders: 0.058ms
Scan: 3272.574ms
OnSourceAssetsModified: 4.482ms
InitializeImportedAssetsSnapshot: 0.177ms
GetAllGuidsForCategorization: 0.234ms
CategorizeAssets: 34.194ms
ImportAndPostprocessOutOfDateAssets: 26529.763ms (11259.825ms without children)
ImportManagerImport: 7829.171ms (29.427ms without children)
ImportInProcess: 7798.390ms
UpdateCategorizedAssets: 1.354ms
CompileScripts: 7249.249ms
PostProcessAllAssets: 185.996ms
ReloadImportedAssets: 0.240ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.164ms
InitializingProgressBar: 0.007ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.183ms
RestoreLoadedAssetsState: 0.286ms
UpdateImportedAssetsSnapshot: 4.643ms
ReloadSourceAssets: 0.363ms
UnloadImportedAssets: 0.003ms
Hotreload: 3.526ms
FixTempGuids: 0.011ms
UnloadStreamsBegin: 0.203ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 0.480ms
GetLoadedSourceAssetsSnapshot: 0.745ms
PersistCurrentRevisions: 1.678ms
UnloadStreamsEnd: 2.128ms
GenerateScriptTypeHashes: 0.284ms
Untracked: 13.146ms
Application.AssetDatabase Initial Script Refresh End
Application.AssetDatabase.Refresh Start
Start importing Assets/StreamingAssets/desc.txt using Guid(02fe61fcb70b7ea4bb7602e47f083614) Importer(-1,00000000000000000000000000000000) -> (artifact id: '836f68ab029a7c7d5a2453a61346f18b') in 0.036374 seconds
Start importing Assets/Wwise/Tools/WwiseIDConverter.py using Guid(9465e567181dc9d45bc1f482fb83fe99) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fcdd18250125d8783020eb203527d67a') in 0.016774 seconds
Start importing Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm using Guid(300d4bd237a9bbb4c8dfe573a8bb830b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '37e33793db6e113a0df7d6871e48ea80') in 0.012077 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_Mac_zh.chm using Guid(a02ea65a5f5224949a20ed6f29f6a7e5) Importer(-1,00000000000000000000000000000000) -> (artifact id: '92c878aaf2eb75fc165a6b93ca00288a') in 0.007409 seconds
Start importing Assets/Wwise/Documentation/Windows/ko/WwiseUnityIntegrationHelp_ko.chm using Guid(a07f4431493342b459f6bcd866c88fb4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1f94b0955aaab33e6ff1165b8f8dc07f') in 0.009799 seconds
Start importing Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm using Guid(14c5f4b28c9925140b8aab9f64e5193d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cbae8f6d68f4928f5f27a890cbc47d6d') in 0.007573 seconds
Start importing Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm using Guid(05c6641374bebbc40a0edaa668b1c77d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0b761a94c4d111a42306caadb106e8dd') in 0.007793 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/ko/WwiseUnityIntegrationHelp_Mac_ko.chm using Guid(ac289aa44e6084343908ca7609720077) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1de024f65e410c01dd6de37393524c61') in 0.007068 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_Mac_ja.chm using Guid(ac4a03acd9d661d4aa17a99ce834fb9c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2d3af4c57cd757c2960a6eafa1bdcbfb') in 0.007630 seconds
Start importing Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_Mac_en.chm using Guid(fe212e95cc3225d4f8cdf1b3f803db7a) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bdd14ee9c751ffe91551067c093ad373') in 0.008689 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.pdb using Guid(50ecc7fdd678da1489c239e27d6554ed) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8a81f86cf44a6c003084c86aaba87997') in 0.014419 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.ilk using Guid(d072d216f86cc0a4fa5ee34a86512cfb) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c9e6ea84fcec791aacbe64c18541560e') in 0.010371 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.pdb using Guid(32372c08c331a124aaac20281f297f1f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cc578eaa0191932434638ef2d66405ad') in 0.007769 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.pdb using Guid(6415d9c57ed7dc34dbdce7a504b498e8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '4e96f7c6bd3e5d705bf1f232e42af8b0') in 0.007102 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.pdb using Guid(e43aafc293731c949b2d44fef0d5465a) Importer(-1,00000000000000000000000000000000) -> (artifact id: '122133e6ed7de6398135195abc0cfe76') in 0.006781 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.ilk using Guid(05519709e4145ca44a37b58cb86ae071) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bed6ce27b99eee16b9f22a5bfec209b7') in 0.006921 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.pdb using Guid(27395c2a6a82bc248a93e6366458c861) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'b43e3d79875efcb9c9961a970a370732') in 0.006451 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile/AkSoundEngine.pdb using Guid(ec70ba69baa612e46ad88a14d5254fbe) Importer(-1,00000000000000000000000000000000) -> (artifact id: '29206c110d92679904d4b170a4ebca53') in 0.007529 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM/Contents/Info.plist using Guid(96aa93067ba418e488ff0ca9e2f5fa4f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6c337e5866d080ea6668a05103223fd8') in 0.011569 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM/Contents/Info.plist using Guid(27354f8219044a242aeb31ee037363f9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e170df4f317d8346df844444b8ed9159') in 0.007113 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM/Contents/Info.plist using Guid(a7722cb077fab7c49983578cdb695e23) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a6295de2b4c80f896b6cb06706dc5b3a') in 0.008072 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine using Guid(991efcf8ad26fef468460702f2c624cc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'cd347d8a8563049360d60a422ff02b6a') in 0.007152 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine using Guid(ddc12c86929a7e847b5f53e3b36c90d6) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9d354ad425569593c14dea4504210167') in 0.005809 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine using Guid(5f396c60026252e4ebcac59c13f480b2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '73d99b25c99ef8df70741ddbd269f472') in 0.005685 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Profile/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF/AkSoundEngine using Guid(90a7d81487131354188d17f51ab4d556) Importer(-1,00000000000000000000000000000000) -> (artifact id: '713bdec5ae8438f740779c38951ee9d8') in 0.005691 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Release/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF/AkSoundEngine using Guid(24d0bd5e55ee84c499b830724e9322e1) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7f03c5c0b5f51de3c4b7ef4718a7726c') in 0.005994 seconds
Start importing Assets/Wwise/API/Runtime/Plugins/Mac/Debug/AkSoundEngine.bundle.dSYM/Contents/Resources/DWARF/AkSoundEngine using Guid(f4e7a3424d6391c41829af37cbb41336) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2eaaa64410e21c9a76ba10a531ed5dd9') in 0.006643 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/switchgroup_nor.png using Guid(80a1416227f7f75439ef7627b30f4eab) Importer(-1,00000000000000000000000000000000) -> (artifact id: '60c7cbff80189bc1ccd2024461013a50') in 0.024420 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/blank.png using Guid(82e20852430f8b84180f4b8202d474c2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '026cbc27489829df7aece50f6c4c5f2a') in 0.019693 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/event_nor.png using Guid(137e41861828b5c4c9a59d8b73f40690) Importer(-1,00000000000000000000000000000000) -> (artifact id: '46bee9a11b053a15d0250d06e06137d0') in 0.017438 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/wproj.png using Guid(147a295365120254bb67a6662fa104a4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '678c9b7c0167821d99b643951325d759') in 0.017774 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/workunit_nor.png using Guid(a59fd08c71c368040aa3f8434ad6b421) Importer(-1,00000000000000000000000000000000) -> (artifact id: '06795b203af5486e316e5f66f363d8d3') in 0.017964 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/auxbus_nor.png using Guid(6979b26e1ae4f9e4b874c13cb5c56863) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3af2796651dcb2f865dd17a58fe3d9c0') in 0.019263 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/physical_folder_nor.png using Guid(b95b0db6822d4f34381a166c03cef8f2) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd2ce0d25675f066229f3ddd8f7e4ba5e') in 0.020576 seconds
Start importing Assets/Wwise/Gizmos/WwiseAudioSpeaker.png using Guid(5aafe1fb84e0c3948b8b4dcc70c5f675) Importer(-1,00000000000000000000000000000000) -> (artifact id: '975bc1175db5abe5c5fe93ca30ed2310') in 0.020920 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/folder_nor.png using Guid(aaf0b1c3593081e4db3cf5f4d8ff1be4) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1cd3f3ffed26a3d0e03f471f2ff0a65c') in 0.022294 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/bus_nor.png using Guid(3b1bd7076ff579d48b6df8d9664128be) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd62a4758a7e2ca26010a1548364bc0bd') in 0.020455 seconds
Start importing Assets/Wwise/Gizmos/wwise_white_on_gray.png using Guid(8bfceaf74b28bcd47a989b6cea43a59d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '30666a3e6ed89848577defa42643133f') in 0.021147 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/gameparameter_nor.png using Guid(1c96dd548c23d8d4fadfbdd364e85ab0) Importer(-1,00000000000000000000000000000000) -> (artifact id: '98aa3ba9f806b7bbafce8ea2faed9839') in 0.024393 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/switch_nor.png using Guid(0e53f10993d7186428b848a7149b681c) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3ec542cc9e41192cbcd90ee0c20b0aa4') in 0.022570 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/acoustictexture_nor.png using Guid(ae8fa3e4e5174a246879c9858dbecff6) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'bd39654cbf983c2bf61dd2057d800914') in 0.018721 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/stategroup_nor.png using Guid(5fa705d8e3534d44889403efb4c2eb3e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '01b933734652e88081d5d3d2ab824a0f') in 0.020098 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/soundbank_nor.png using Guid(af29e314e643d3f4e958729d9a9e416e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd00f46b472e030bb5ddfa1bda749e51e') in 0.020646 seconds
Start importing Assets/Wwise/API/Editor/WwiseWindows/TreeViewIcons/state_nor.png using Guid(ff1cf30969c0e3f4f9cbfa6936c0854d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '93eb091d63bd1d585e080420583c1ded') in 0.022098 seconds
Start importing Assets/Wwise/Version.txt using Guid(f0e8bc7706d9726479e4002a2770de5d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '3299045913170c359c443fb0a0b670a6') in 0.012574 seconds
Start importing Assets/Wwise/API/README.md using Guid(c1879bd5e8cc4674aac2f31b749853e2) Importer(-1,00000000000000000000000000000000) -> (artifact id: '42c8f82a514dce912062c77a4f6e24a0') in 0.013633 seconds
Start importing Assets/Wwise/Timeline/README.md using Guid(44ae72dc30a1ece43a0676a714186a99) Importer(-1,00000000000000000000000000000000) -> (artifact id: '8324268fe50e5accd4da2ff0cb4be12d') in 0.013888 seconds
Start importing Assets/Wwise/API/LICENSE.md using Guid(5440741b9a94b4347bc4993119d26154) Importer(-1,00000000000000000000000000000000) -> (artifact id: '57fe9246fda2a741c6dfbcb5363f7605') in 0.010646 seconds
Start importing Assets/Wwise/MonoBehaviour/package.json using Guid(a4b1ee65f6e08d2488c6823654bc50fc) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'aa15c478d6bc9cd081d058bc621644b1') in 0.020726 seconds
Start importing Assets/Wwise/MonoBehaviour/CHANGELOG.md using Guid(161a06f438f5a1144a53d2639ea66232) Importer(-1,00000000000000000000000000000000) -> (artifact id: '35b99267a43c9ba9b3691987277ea977') in 0.013600 seconds
Start importing Assets/Wwise/MonoBehaviour/LICENSE.md using Guid(d77862fc05738f4469676eef28050267) Importer(-1,00000000000000000000000000000000) -> (artifact id: '364f3f2bbbc366f93bf38a9b0319ce25') in 0.010036 seconds
Start importing Assets/Wwise/Timeline/CHANGELOG.md using Guid(397ed5c6b7212df479eea738c5c7dd57) Importer(-1,00000000000000000000000000000000) -> (artifact id: '86778e8f0f34452dac552e210b2bed15') in 0.012866 seconds
Start importing Assets/Wwise/Timeline/LICENSE.md using Guid(698654bcf93028c428c8858e7ad44b39) Importer(-1,00000000000000000000000000000000) -> (artifact id: '338d4b96d7ee1a988d8c86d3bb46ec88') in 0.008368 seconds
Start importing Assets/Wwise/MonoBehaviour/README.md using Guid(3bfa3f2aa054b05408ff8695c1ea44be) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fcb0e8184cb31b011cc817056e6dbd60') in 0.014670 seconds
Start importing Assets/WwiseSettings.xml using Guid(ab418b528e427b74fbef3f86fcb59d71) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9f5d723d5cd6bd001f71d9e2d4ec3f6d') in 0.013590 seconds
Start importing Assets/Wwise/API/package.json using Guid(cde78a035b489ac4690e444583fc74f8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '970468f56f942c53551c5fc60ca052d8') in 0.015369 seconds
Start importing Assets/Wwise/Timeline/package.json using Guid(fd27dee244757e84f8ee38e3237da2c4) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'a2b0c5693592c0dba2ee015ab803034a') in 0.014374 seconds
Start importing Assets/Wwise/API/CHANGELOG.md using Guid(ff04e74a8dec33646b8213c6a7a09119) Importer(-1,00000000000000000000000000000000) -> (artifact id: '6d03c97a68c58a607ee35f7fc9800a51') in 0.009947 seconds
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akmotion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkMotion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkMotion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksynthone' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSynthOne.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSynthOne.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akrecorder' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkRecorder.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkRecorder.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktimestretch' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTimeStretch.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akpitchshifter' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkPitchShifter.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akstereodelay' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkStereoDelay.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akguitardistortion' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'mcdsp' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/McDSP.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/McDSP.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'auro' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/Auro.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/Auro.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akconvolutionreverb' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akharmonizer' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkHarmonizer.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'msspatial' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MSSpatial.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MSSpatial.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aktremolo' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkTremolo.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkTremolo.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedimpact' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedgrain' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundengine' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/Release/AkSoundEngine.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/Debug/AkSoundEngine.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'aksoundseedair' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'masteringsuite' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/MasteringSuite.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/MasteringSuite.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'izotope' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/iZotope.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/iZotope.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akreflect' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkReflect.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkReflect.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Multiple plugins with the same name 'akflanger' (found at 'Assets/Wwise/API/Runtime/Plugins/Windows/x86_64/DSP/AkFlanger.dll' and 'Assets/Wwise/API/Runtime/Plugins/Windows/x86/DSP/AkFlanger.dll'). That means one or more plugins are set to be compatible with Editor. Only one plugin at the time can be used by Editor.
Refreshing native plugins compatible for Editor in 1.39 ms, found 21 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Refresh completed in 0.938386 seconds.
RefreshInfo: RefreshV2(ForceSynchronousImport) scanfilter:
RefreshProfiler: Total: 938.369ms
InvokeBeforeRefreshCallbacks: 0.580ms
ApplyChangesToAssetFolders: 0.075ms
Scan: 33.402ms
OnSourceAssetsModified: 0.856ms
InitializeImportedAssetsSnapshot: 3.576ms
GetAllGuidsForCategorization: 0.148ms
CategorizeAssets: 24.610ms
ImportAndPostprocessOutOfDateAssets: 868.678ms (38.332ms without children)
ImportManagerImport: 810.834ms (3.198ms without children)
ImportInProcess: 807.267ms
UpdateCategorizedAssets: 0.369ms
PostProcessAllAssets: 15.892ms
ReloadImportedAssets: 0.036ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.143ms
InitializingProgressBar: 0.003ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.132ms
OnDemandSchedulerStart: 0.455ms
RestoreLoadedAssetsState: 0.933ms
UpdateImportedAssetsSnapshot: 1.918ms
ReloadSourceAssets: 0.199ms
UnloadImportedAssets: 0.084ms
Hotreload: 1.881ms
FixTempGuids: 0.003ms
GatherAllCurrentPrimaryArtifactRevisions: 0.053ms
UnloadStreamsBegin: 0.011ms
LoadedImportedAssetsSnapshotReleaseGCHandles: 0.649ms
GetLoadedSourceAssetsSnapshot: 1.788ms
PersistCurrentRevisions: 0.364ms
UnloadStreamsEnd: 0.541ms