-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogRunSetup.txt
More file actions
5079 lines (4397 loc) · 369 KB
/
logRunSetup.txt
File metadata and controls
5079 lines (4397 loc) · 369 KB
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
[Package Manager] Server::Start -- Port 61125 was selected
LICENSE SYSTEM [2019726 11:24:25] Next license update check is after 2019-07-27T07:36:41
COMMAND LINE ARGUMENTS:
/Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/MacOS/Unity
-batchmode
-nographics
-logFile
logRunSetup.txt
-projectPath
/Users/RIZA/Projects/Mobge/WwiseUnityObbTest_WwiseIntegrationTemp
-executeMethod
WwiseSetupWizard.RunModify
-quit
Successfully changed project path to: /Users/RIZA/Projects/Mobge/WwiseUnityObbTest_WwiseIntegrationTemp
/Users/RIZA/Projects/Mobge/WwiseUnityObbTest_WwiseIntegrationTemp
Loading GUID <-> Path mappings...0.000134 seconds
Loading Asset Database...0.014386 seconds
Audio: FMOD Profiler initialized on port 54901
AssetDatabase consistency checks...0.035051 seconds
Refreshing native plugins compatible for Editor in 62.52 ms, found 1 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
DisplayProgressbar: Unity Package Manager
[Package Manager] Done resolving packages in 0.27s seconds
[Package Manager] Registering 36 packages:
[Package Manager] * Package : com.unity.ads@2.0.8
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.ads@2.0.8)
[Package Manager] * Package : com.unity.analytics@2.0.16
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.analytics@2.0.16)
[Package Manager] * Package : com.unity.package-manager-ui@1.9.11
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.package-manager-ui@1.9.11)
[Package Manager] * Package : com.unity.purchasing@2.0.3
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.purchasing@2.0.3)
[Package Manager] * Package : com.unity.textmeshpro@1.2.4
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.textmeshpro@1.2.4)
[Package Manager] * Package : com.unity.modules.ai@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.ai)
[Package Manager] * Package : com.unity.modules.animation@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.animation)
[Package Manager] * Package : com.unity.modules.assetbundle@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.assetbundle)
[Package Manager] * Package : com.unity.modules.audio@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.audio)
[Package Manager] * Package : com.unity.modules.cloth@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.cloth)
[Package Manager] * Package : com.unity.modules.director@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.director)
[Package Manager] * Package : com.unity.modules.imageconversion@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.imageconversion)
[Package Manager] * Package : com.unity.modules.imgui@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.imgui)
[Package Manager] * Package : com.unity.modules.jsonserialize@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.jsonserialize)
[Package Manager] * Package : com.unity.modules.particlesystem@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.particlesystem)
[Package Manager] * Package : com.unity.modules.physics@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.physics)
[Package Manager] * Package : com.unity.modules.physics2d@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.physics2d)
[Package Manager] * Package : com.unity.modules.screencapture@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.screencapture)
[Package Manager] * Package : com.unity.modules.terrain@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.terrain)
[Package Manager] * Package : com.unity.modules.terrainphysics@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.terrainphysics)
[Package Manager] * Package : com.unity.modules.tilemap@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.tilemap)
[Package Manager] * Package : com.unity.modules.ui@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.ui)
[Package Manager] * Package : com.unity.modules.uielements@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.uielements)
[Package Manager] * Package : com.unity.modules.umbra@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.umbra)
[Package Manager] * Package : com.unity.modules.unityanalytics@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unityanalytics)
[Package Manager] * Package : com.unity.modules.unitywebrequest@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequest)
[Package Manager] * Package : com.unity.modules.unitywebrequestassetbundle@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestassetbundle)
[Package Manager] * Package : com.unity.modules.unitywebrequestaudio@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestaudio)
[Package Manager] * Package : com.unity.modules.unitywebrequesttexture@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequesttexture)
[Package Manager] * Package : com.unity.modules.unitywebrequestwww@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestwww)
[Package Manager] * Package : com.unity.modules.vehicles@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.vehicles)
[Package Manager] * Package : com.unity.modules.video@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.video)
[Package Manager] * Package : com.unity.modules.vr@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.vr)
[Package Manager] * Package : com.unity.modules.wind@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.wind)
[Package Manager] * Package : com.unity.modules.xr@1.0.0
(location: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.xr)
[Package Manager] * Package : com.unity.standardevents@1.0.13
(location: /Users/RIZA/Library/Unity/cache/packages/packages.unity.com/com.unity.standardevents@1.0.13)
[Package Manager] Done registering packages in 0.00s seconds
Initialize engine version: 2018.2.12f1 (0a46ddfcfad4)
Forcing GfxDevice: Null
GfxDevice: creating device client; threaded=0
NullGfxDevice:
Version: NULL 1.0 [1.0]
Renderer: Null Device
Vendor: Unity Technologies
WARNING: Shader Unsupported: 'Hidden/FrameDebuggerRenderTargetDisplay' - Pass '' has no vertex shader
Initialize mono
Mono path[0] = '/Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Managed'
Mono path[1] = '/Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Mono/lib/mono/2.0'
Mono config path = '/Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Mono/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,defer=y,address=0.0.0.0:56841
Begin MonoManager ReloadAssembly
Initializing Unity.PackageManager (PackageManager) v2018.2.12 for Unity v2018.2.12f1
Registering precompiled unity dll's ...
Register platform support module: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Register platform support module: /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Registered in 0.000856 seconds.
Registering precompiled user dll's ...
Registered in 0.050023 seconds.
Registering platform support modules:
Registered platform support modules in: 0.158013s.
Native extension for OSXStandalone target not found
Native extension for iOS target not found
Refreshing native plugins compatible for Editor in 1.96 ms, found 5 plugins.
Native extension for Android target not found
Refreshing native plugins compatible for Editor in 1.88 ms, found 5 plugins.
Preloading 2 native plugins for Editor in 7.68 ms.
Mono: successfully reloaded assembly
- Completed reload, in 1.627 seconds
Platform modules already initialized, skipping
Begin MonoManager ReloadAssembly
Initializing Unity.PackageManager (PackageManager) v2018.2.12 for Unity v2018.2.12f1
Registering platform support modules:
Registered platform support modules in: 0.075066s.
Native extension for OSXStandalone target not found
Native extension for iOS target not found
Refreshing native plugins compatible for Editor in 2.06 ms, found 5 plugins.
Native extension for Android target not found
Refreshing native plugins compatible for Editor in 1.63 ms, found 5 plugins.
Preloading 2 native plugins for Editor in 2.00 ms.
WwiseUnity: Unable to load asset at </Users/RIZA/Projects/Mobge/WwiseUnityObbTest_WwiseIntegrationTemp/Assets/Wwise/Editor/ProjectData/AkWwiseProjectData.asset>.
UnityEngine.DebugLogHandler:Internal_Log(LogType, String, Object)
UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogWarning(Object)
AkWwiseProjectInfo:GetData() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseWindows/AkWwiseProjectInfo.cs:45)
AkWwiseWWUBuilder:GatherModifiedFiles() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs:397)
AkWwiseWWUBuilder:InitializeWwiseProjectData() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs:72)
AkWwiseWWUBuilder:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs:298)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
(Filename: /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseWindows/AkWwiseProjectInfo.cs Line: 45)
DisplayProgressbar: Populating Wwise Picker
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./AkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/AkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.dylib
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.so
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/./libAkWaapiClient.bundle
Fallback handler could not load library /Users/RIZA/Projects/Applications-for-Projects/OddmarUnity/Unity.app/Contents/Frameworks/Mono/lib/libAkWaapiClient
System.DllNotFoundException: AkWaapiClient
at (wrapper managed-to-native) AkWaapiClient_PINVOKE:SetWampEventCallback (AkWaapiClient/WaapiEventCallback)
at AkWaapiClient..cctor () [0x00059] in /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Deployment/API/Handwritten/WAAPI/AkWaapiClient.cs:210
UnityEngine.DebugLogHandler:Internal_Log(LogType, String, Object)
UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogError(Object)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:97)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
(Filename: /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs Line: 97)
'Assets/fuck/Wwise/Deployment/Plugins/Windows/x86/Profile/AkWaapiClient.dll' does not exist
UnityEditor.AssetDatabase:ImportAsset(String, ImportAssetOptions)
UnityEditor.AssetDatabase:ImportAsset(String) (at /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs:165)
AkPluginActivator:ActivatePluginsForEditor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:602)
AkPluginActivator:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:110)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
[/Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetInterface.cpp line 1543]
(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs Line: 165)
'Assets/fuck/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll' does not exist
UnityEditor.AssetDatabase:ImportAsset(String, ImportAssetOptions)
UnityEditor.AssetDatabase:ImportAsset(String) (at /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs:165)
AkPluginActivator:ActivatePluginsForEditor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:602)
AkPluginActivator:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:110)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
[/Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetInterface.cpp line 1543]
(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs Line: 165)
'Assets/fuck/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.dll' does not exist
UnityEditor.AssetDatabase:ImportAsset(String, ImportAssetOptions)
UnityEditor.AssetDatabase:ImportAsset(String) (at /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs:165)
AkPluginActivator:ActivatePluginsForEditor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:602)
AkPluginActivator:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:110)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
[/Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetInterface.cpp line 1543]
(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs Line: 165)
'Assets/fuck/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkWaapiClient.dll' does not exist
UnityEditor.AssetDatabase:ImportAsset(String, ImportAssetOptions)
UnityEditor.AssetDatabase:ImportAsset(String) (at /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs:165)
AkPluginActivator:ActivatePluginsForEditor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:602)
AkPluginActivator:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:110)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
[/Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetInterface.cpp line 1543]
(Filename: /Users/builduser/buildslave/unity/build/artifacts/generated/bindings_old/common/Editor/AssetDatabaseBindings.gen.cs Line: 165)
WwiseUnity: Plugins successfully activated for Profile in Editor.
UnityEngine.DebugLogHandler:Internal_Log(LogType, String, Object)
UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:Log(Object)
AkPluginActivator:ActivatePluginsForEditor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:608)
AkPluginActivator:.cctor() (at /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs:110)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(IntPtr)
System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor(RuntimeTypeHandle) (at /Users/builduser/buildslave/mono/build/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs:101)
UnityEditor.EditorAssemblies:ProcessEditorInitializeOnLoad(Type) (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:93)
UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorAssemblies.cs:131)
(Filename: /Users/RIZA/Projects/Mobge/WwiseUnityObbTest/Assets/fuck/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs Line: 608)
Mono: successfully reloaded assembly
- Completed reload, in 2.873 seconds
Platform modules already initialized, skipping
Validating Project structure ... 0.007126 seconds.
Refresh: detecting if any assets need to be imported or removed ...
*** assets/wwise replaces assets/fuck/wwise for guid 8526c1c76ded8cd4eb2627b85d705380
*** assets/wwise/deployment replaces assets/fuck/wwise/deployment for guid 6ad7bf18759b08242992771c44358048
*** assets/wwise/deployment/api replaces assets/fuck/wwise/deployment/api for guid 91efd851fe69a61499c2e783aa23c29e
*** assets/wwise/deployment/api/generated replaces assets/fuck/wwise/deployment/api/generated for guid 0ec5fd213b10129449ae5f56558caab6
*** assets/wwise/deployment/api/generated/common replaces assets/fuck/wwise/deployment/api/generated/common for guid 215c0640a84d56844aa358c356deb45b
*** assets/wwise/deployment/api/generated/common/akresult.cs replaces assets/fuck/wwise/deployment/api/generated/common/akresult.cs for guid 8d84ab5c44c870a4ab0b3915c9730731
*** assets/wwise/deployment/api/generated/common/ak3dpositiontype.cs replaces assets/fuck/wwise/deployment/api/generated/common/ak3dpositiontype.cs for guid cfafe2b4e1e677646822266ca5d69a1e
*** assets/wwise/deployment/api/generated/common/ak3dspatializationmode.cs replaces assets/fuck/wwise/deployment/api/generated/common/ak3dspatializationmode.cs for guid 1642417c1b6f7a048bcbe9a20fbea6ea
*** assets/wwise/deployment/api/generated/common/akacousticsurface.cs replaces assets/fuck/wwise/deployment/api/generated/common/akacousticsurface.cs for guid e6fffab130ba5e74e910f3eeff2176d9
*** assets/wwise/deployment/api/generated/common/akactiononeventtype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akactiononeventtype.cs for guid 0ccef10b3600ccd4baf1523a5e94fd35
*** assets/wwise/deployment/api/generated/common/akaudiodevicestate.cs replaces assets/fuck/wwise/deployment/api/generated/common/akaudiodevicestate.cs for guid 3f5e03ba1ac8cc64b9af5f0768768522
*** assets/wwise/deployment/api/generated/common/akaudioformat.cs replaces assets/fuck/wwise/deployment/api/generated/common/akaudioformat.cs for guid f85d3351acca25940b9d233672fa551e
*** assets/wwise/deployment/api/generated/common/akaudiointerruptioncallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akaudiointerruptioncallbackinfo.cs for guid 13df4e714ecca974c92d3ac00d9ecfcb
*** assets/wwise/deployment/api/generated/common/akaudiosettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akaudiosettings.cs for guid c49c5d3e1aee17d4086e13278ac3b15b
*** assets/wwise/deployment/api/generated/common/akaudiosourcechangecallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akaudiosourcechangecallbackinfo.cs for guid 91ee41e1f326d834c9b6ac7469b24566
*** assets/wwise/deployment/api/generated/common/akauxsendvalue.cs replaces assets/fuck/wwise/deployment/api/generated/common/akauxsendvalue.cs for guid bbee919a059142742b2fb8e7b7f8d472
*** assets/wwise/deployment/api/generated/common/akbankcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akbankcallbackinfo.cs for guid f117a9f41efa497418d27ffd12b5aa15
*** assets/wwise/deployment/api/generated/common/akbankcontent.cs replaces assets/fuck/wwise/deployment/api/generated/common/akbankcontent.cs for guid 12bc0e69953aeaa4291bde1d9990de2a
*** assets/wwise/deployment/api/generated/common/akbushierarchyflags.cs replaces assets/fuck/wwise/deployment/api/generated/common/akbushierarchyflags.cs for guid 056a8c9827eb77448b865729d709181a
*** assets/wwise/deployment/api/generated/common/akcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akcallbackinfo.cs for guid 8499f1df9be2076429e53defb7335a73
*** assets/wwise/deployment/api/generated/common/akcallbackserializer.cs replaces assets/fuck/wwise/deployment/api/generated/common/akcallbackserializer.cs for guid 32349a201ed0404459aa1810b2d02f7a
*** assets/wwise/deployment/api/generated/common/akcallbacktype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akcallbacktype.cs for guid fdcc843b4ecfa854d9a85848a9f89712
*** assets/wwise/deployment/api/generated/common/akchannelconfig.cs replaces assets/fuck/wwise/deployment/api/generated/common/akchannelconfig.cs for guid 1217d8fb5a7b0a144b7922c70f189ca0
*** assets/wwise/deployment/api/generated/common/akchannelconfigtype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akchannelconfigtype.cs for guid 0c4d042e6ed19f24cb140b0e83fc3a6e
*** assets/wwise/deployment/api/generated/common/akchannelemitter.cs replaces assets/fuck/wwise/deployment/api/generated/common/akchannelemitter.cs for guid a371829323155f44d99a7c600acb4176
*** assets/wwise/deployment/api/generated/common/akchannelordering.cs replaces assets/fuck/wwise/deployment/api/generated/common/akchannelordering.cs for guid d1aee31231ddb7845b2a69439f5301ce
*** assets/wwise/deployment/api/generated/common/akconnectiontype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akconnectiontype.cs for guid 4d62cefc24375f3408f24e486e4ef94a
*** assets/wwise/deployment/api/generated/common/akcurveinterpolation.cs replaces assets/fuck/wwise/deployment/api/generated/common/akcurveinterpolation.cs for guid ac736025deaf8574bb966b7a75af0885
*** assets/wwise/deployment/api/generated/common/akdevicesettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdevicesettings.cs for guid 2ffb3fe54a4613044ac2272115600309
*** assets/wwise/deployment/api/generated/common/akdiffractionflags.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdiffractionflags.cs for guid 6e9c08031f1bfaf4fa83172470507874
*** assets/wwise/deployment/api/generated/common/akdiffractionpathinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdiffractionpathinfo.cs for guid 05eb467ece4d53645ab0b77cfb481c76
*** assets/wwise/deployment/api/generated/common/akdurationcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdurationcallbackinfo.cs for guid 8377ce105fb38fb48afb1c84279591a1
*** assets/wwise/deployment/api/generated/common/akdynamicsequenceitemcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdynamicsequenceitemcallbackinfo.cs for guid e296b333f45addd41a296bbe787ecce0
*** assets/wwise/deployment/api/generated/common/akdynamicsequencetype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akdynamicsequencetype.cs for guid 64a104b0e478daf419fcfd13d6649025
*** assets/wwise/deployment/api/generated/common/akemittersettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akemittersettings.cs for guid fff29a2b03ab5a2418848cf8ced269ff
*** assets/wwise/deployment/api/generated/common/akeventcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akeventcallbackinfo.cs for guid 7d74201b3699ac045bdf4857eb14884a
*** assets/wwise/deployment/api/generated/common/akexternalsourceinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akexternalsourceinfo.cs for guid 394c557fbd26f434f871a0c7d9b015fb
*** assets/wwise/deployment/api/generated/common/akfloorplane.cs replaces assets/fuck/wwise/deployment/api/generated/common/akfloorplane.cs for guid 82997ab0e66fd5b45a9698c808d17928
*** assets/wwise/deployment/api/generated/common/akglobalcallbacklocation.cs replaces assets/fuck/wwise/deployment/api/generated/common/akglobalcallbacklocation.cs for guid 50cc6a3152bcb7641ad699c33aad0e9f
*** assets/wwise/deployment/api/generated/common/akgrouptype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akgrouptype.cs for guid 62d0dd07b4160834797ecf8e47a70e5d
*** assets/wwise/deployment/api/generated/common/akimagesourceparams.cs replaces assets/fuck/wwise/deployment/api/generated/common/akimagesourceparams.cs for guid 44d4151255d27c4429c7ad90c3e027f3
*** assets/wwise/deployment/api/generated/common/akimagesourcesettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akimagesourcesettings.cs for guid ef6291161a7357040880dec88bfc0d04
*** assets/wwise/deployment/api/generated/common/akinitsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akinitsettings.cs for guid b43d904d2c536974dbcceff51732ffa5
*** assets/wwise/deployment/api/generated/common/akinitializationsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akinitializationsettings.cs for guid ff04bf12be99a4544afb758138d7498e
*** assets/wwise/deployment/api/generated/common/akiterator.cs replaces assets/fuck/wwise/deployment/api/generated/common/akiterator.cs for guid 03e58cc28f9c00643a7816affc8556cc
*** assets/wwise/deployment/api/generated/common/akmidicctypes.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmidicctypes.cs for guid a7062cf54214e464d8e24f0bf5fea824
*** assets/wwise/deployment/api/generated/common/akmidievent.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmidievent.cs for guid 0b622fd4dab0c8c4fa8ae5b493764250
*** assets/wwise/deployment/api/generated/common/akmidieventcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmidieventcallbackinfo.cs for guid 7b104a24dc3e7d44392458f9df425e71
*** assets/wwise/deployment/api/generated/common/akmidieventtypes.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmidieventtypes.cs for guid 8cc5e33e0a115b544b8e132835007da6
*** assets/wwise/deployment/api/generated/common/akmidipost.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmidipost.cs for guid af4f3f1972c43cf4781e50a6dbb7a6c4
*** assets/wwise/deployment/api/generated/common/akmarkercallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmarkercallbackinfo.cs for guid 8be926362a023fa4ca41df181e968bcf
*** assets/wwise/deployment/api/generated/common/akmemsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmemsettings.cs for guid d6ccb2d82ba374c4fac2adaded78f159
*** assets/wwise/deployment/api/generated/common/akmeteringflags.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmeteringflags.cs for guid cb7a33aecb1af5949b26fa48f196b513
*** assets/wwise/deployment/api/generated/common/akmonitorerrorcode.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmonitorerrorcode.cs for guid 9502d42fb5de2f142a1fff757babb13e
*** assets/wwise/deployment/api/generated/common/akmonitorerrorlevel.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmonitorerrorlevel.cs for guid 9eaa0de6503e35d418917ae8921a247f
*** assets/wwise/deployment/api/generated/common/akmonitoringcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmonitoringcallbackinfo.cs for guid 518604ed0c9a8b74991db95d0feb6cd7
*** assets/wwise/deployment/api/generated/common/akmultipositiontype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmultipositiontype.cs for guid 15c108ee83d05f24abab7131b04c77d3
*** assets/wwise/deployment/api/generated/common/akmusicplaylistcallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmusicplaylistcallbackinfo.cs for guid c72760647df09f84c8d692950e9d0bd1
*** assets/wwise/deployment/api/generated/common/akmusicsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmusicsettings.cs for guid bc66140bdba338547a81b06ce5f03a85
*** assets/wwise/deployment/api/generated/common/akmusicsynccallbackinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akmusicsynccallbackinfo.cs for guid 0cdebd54fd322524fa791ffa01a5be16
*** assets/wwise/deployment/api/generated/common/akobjectinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akobjectinfo.cs for guid 294f9478561138547a612a22d6e90331
*** assets/wwise/deployment/api/generated/common/akobstructionocclusionvalues.cs replaces assets/fuck/wwise/deployment/api/generated/common/akobstructionocclusionvalues.cs for guid 1caf74c532fae1b43ad803e78911755e
*** assets/wwise/deployment/api/generated/common/akoutputsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akoutputsettings.cs for guid 6e22f15def82b8f418c49655254e4f3f
*** assets/wwise/deployment/api/generated/common/akpanningrule.cs replaces assets/fuck/wwise/deployment/api/generated/common/akpanningrule.cs for guid 7e1eb41de5c72374ead8b6e886ba46a2
*** assets/wwise/deployment/api/generated/common/akpathparams.cs replaces assets/fuck/wwise/deployment/api/generated/common/akpathparams.cs for guid 14ed4ecf1f96b2e41b3792b5e4c49879
*** assets/wwise/deployment/api/generated/common/akplaylist.cs replaces assets/fuck/wwise/deployment/api/generated/common/akplaylist.cs for guid 9334601a9003da54f9d888aea44610f9
*** assets/wwise/deployment/api/generated/common/akplaylistarray.cs replaces assets/fuck/wwise/deployment/api/generated/common/akplaylistarray.cs for guid 9461a9bc4fe751a43b81c239700b51be
*** assets/wwise/deployment/api/generated/common/akplaylistitem.cs replaces assets/fuck/wwise/deployment/api/generated/common/akplaylistitem.cs for guid 168bbdc2a1098b04b9cb5c13011d7ad1
*** assets/wwise/deployment/api/generated/common/akplugintype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akplugintype.cs for guid 101ac70e32707aa4a8c6a9db7b31c69e
*** assets/wwise/deployment/api/generated/common/akpositioninginfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akpositioninginfo.cs for guid fc55a346ee3409a4d9dc267fa1882d00
*** assets/wwise/deployment/api/generated/common/akpreparationtype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akpreparationtype.cs for guid b10898c3674720c4a9f19600809d566a
*** assets/wwise/deployment/api/generated/common/akpropagationpathinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akpropagationpathinfo.cs for guid 3ff6c13dfa9687243856f58753e4aa47
*** assets/wwise/deployment/api/generated/common/akqueryrtpcvalue.cs replaces assets/fuck/wwise/deployment/api/generated/common/akqueryrtpcvalue.cs for guid 3c1d00d2c469a5743932a06eb531b8e2
*** assets/wwise/deployment/api/generated/common/akramp.cs replaces assets/fuck/wwise/deployment/api/generated/common/akramp.cs for guid 122303e22527191449c65309a1f0fa57
*** assets/wwise/deployment/api/generated/common/akreflectionpathinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/akreflectionpathinfo.cs for guid 87e32637ad7a82e49a409131db58e603
*** assets/wwise/deployment/api/generated/common/akroomparams.cs replaces assets/fuck/wwise/deployment/api/generated/common/akroomparams.cs for guid cd640e8a0a2a09241942e1676c406c90
*** assets/wwise/deployment/api/generated/common/aksegmentinfo.cs replaces assets/fuck/wwise/deployment/api/generated/common/aksegmentinfo.cs for guid e7d4f63eb8feb884cbabc7f8a8e74b87
*** assets/wwise/deployment/api/generated/common/akserializedcallbackheader.cs replaces assets/fuck/wwise/deployment/api/generated/common/akserializedcallbackheader.cs for guid 7a44bff35bb9f49438d1345663ed5e5c
*** assets/wwise/deployment/api/generated/common/aksourcechannelordering.cs replaces assets/fuck/wwise/deployment/api/generated/common/aksourcechannelordering.cs for guid ab13171398dfe73469c8d46075dd17cb
*** assets/wwise/deployment/api/generated/common/aksourcesettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/aksourcesettings.cs for guid d7c75b39c808b20429d59f492f6925e1
*** assets/wwise/deployment/api/generated/common/akspatialaudioinitsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akspatialaudioinitsettings.cs for guid ea889c01423f49d4ca80026b72cc1ebb
*** assets/wwise/deployment/api/generated/common/akspeakerpanningtype.cs replaces assets/fuck/wwise/deployment/api/generated/common/akspeakerpanningtype.cs for guid 73a7a9585cf93c740ad6654940e27ab2
*** assets/wwise/deployment/api/generated/common/akstreammgrsettings.cs replaces assets/fuck/wwise/deployment/api/generated/common/akstreammgrsettings.cs for guid cd57ab53a7e5f5f4dbe55158157aa823
*** assets/wwise/deployment/api/generated/common/aktaskcontext.cs replaces assets/fuck/wwise/deployment/api/generated/common/aktaskcontext.cs for guid 169bffb2dc4e6984f8e7b5739b4a490b
*** assets/wwise/deployment/api/generated/common/aktransform.cs replaces assets/fuck/wwise/deployment/api/generated/common/aktransform.cs for guid 640cf8f398e96244bbc113a28078592b
*** assets/wwise/deployment/api/generated/common/aktriangle.cs replaces assets/fuck/wwise/deployment/api/generated/common/aktriangle.cs for guid 49b0b3a18def62c43babf8a755456347
*** assets/wwise/deployment/api/generated/common/akvector.cs replaces assets/fuck/wwise/deployment/api/generated/common/akvector.cs for guid 2b87fcb91cb4fc040820eb00ae4238fb
*** assets/wwise/deployment/api/generated/common/akvertex.cs replaces assets/fuck/wwise/deployment/api/generated/common/akvertex.cs for guid d0b1ef89c2c65834587942ef8bdd2252
*** assets/wwise/deployment/api/generated/common/_arraypooldefault.cs replaces assets/fuck/wwise/deployment/api/generated/common/_arraypooldefault.cs for guid 081fe8d084dec0644a8bfd65526a8042
*** assets/wwise/deployment/api/generated/common/_arraypoollenginedefault.cs replaces assets/fuck/wwise/deployment/api/generated/common/_arraypoollenginedefault.cs for guid 6f8482993289ca140ad0bdba50656180
*** assets/wwise/deployment/api/generated/common/_arraypoolspatialaudio.cs replaces assets/fuck/wwise/deployment/api/generated/common/_arraypoolspatialaudio.cs for guid 9ff915323e6243546b55a46040a19cd4
*** assets/wwise/deployment/api/generated/mac replaces assets/fuck/wwise/deployment/api/generated/mac for guid de400e1bea8930d4f9ca50cc54278ffc
*** assets/wwise/deployment/api/generated/mac/akcommunicationsettings_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/akcommunicationsettings_mac.cs for guid ccf5527bf77268c43bfd42554430b135
*** assets/wwise/deployment/api/generated/mac/akmempoolattributes_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/akmempoolattributes_mac.cs for guid 92ba303c50d264048b4a7353f3fa52fb
*** assets/wwise/deployment/api/generated/mac/akplatforminitsettings_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/akplatforminitsettings_mac.cs for guid 3ad2910065ab11e458eebf7cf30dd9d9
*** assets/wwise/deployment/api/generated/mac/aksoundenginepinvoke_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/aksoundenginepinvoke_mac.cs for guid b8a7d032afa62054ca46c2a56f1c7a8b
*** assets/wwise/deployment/api/generated/mac/aksoundengine_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/aksoundengine_mac.cs for guid 5aee55b4f80dd4d4790c65f7a69574db
*** assets/wwise/deployment/api/generated/mac/akthreadproperties_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/akthreadproperties_mac.cs for guid c865e9068bf48084dbda5c5c90395b02
*** assets/wwise/deployment/api/generated/mac/akunityplatformspecificsettings_mac.cs replaces assets/fuck/wwise/deployment/api/generated/mac/akunityplatformspecificsettings_mac.cs for guid c57b1d48afba28b4c86c4b934cbc3bda
*** assets/wwise/deployment/api/generated/windows replaces assets/fuck/wwise/deployment/api/generated/windows for guid 0c6e6612239597347887dbff0edd26c1
*** assets/wwise/deployment/api/generated/windows/akaudioapi_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akaudioapi_windows.cs for guid 275af6f4549a20f4f9813282eab6a6ed
*** assets/wwise/deployment/api/generated/windows/akcommunicationsettings_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akcommunicationsettings_windows.cs for guid 1ed24f746d332e64389648fd297cf18a
*** assets/wwise/deployment/api/generated/windows/akmempoolattributes_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akmempoolattributes_windows.cs for guid e9f2687b93dec1f43b1ddb9d83cf1a1a
*** assets/wwise/deployment/api/generated/windows/akplatforminitsettings_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akplatforminitsettings_windows.cs for guid d9157a8fbe4c38c4cb624a69219c17e6
*** assets/wwise/deployment/api/generated/windows/aksoundenginepinvoke_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/aksoundenginepinvoke_windows.cs for guid 38f18ee7ba3908b4d8e54cecbe56c2ba
*** assets/wwise/deployment/api/generated/windows/aksoundengine_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/aksoundengine_windows.cs for guid 1de7558d3ceddd64cb21bf1eb8b33235
*** assets/wwise/deployment/api/generated/windows/akthreadproperties_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akthreadproperties_windows.cs for guid b7b7528a18175da4088fa1ae24d845a1
*** assets/wwise/deployment/api/generated/windows/akunityplatformspecificsettings_windows.cs replaces assets/fuck/wwise/deployment/api/generated/windows/akunityplatformspecificsettings_windows.cs for guid 5348974942fe84745b082b048a01e1db
*** assets/wwise/deployment/api/handwritten replaces assets/fuck/wwise/deployment/api/handwritten for guid f6104b5627911e442a2b14567e7744cc
*** assets/wwise/deployment/api/handwritten/common replaces assets/fuck/wwise/deployment/api/handwritten/common for guid aa1e3dca9e2024c4ca1d664cd087e818
*** assets/wwise/deployment/api/handwritten/common/akaudioinputmanager.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akaudioinputmanager.cs for guid ba32c3f3b8e0b4140ae8f3c926aa262e
*** assets/wwise/deployment/api/handwritten/common/akbankmanager.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akbankmanager.cs for guid d781d8a48e1b2ab42ab1ac0ede661bb4
*** assets/wwise/deployment/api/handwritten/common/akbasepathgetter.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akbasepathgetter.cs for guid 3276a8c4d039b6046ad9d54ba5bdfd9f
*** assets/wwise/deployment/api/handwritten/common/akcallbackmanager.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akcallbackmanager.cs for guid 18c002a13c6937f42b9f9f0226290947
*** assets/wwise/deployment/api/handwritten/common/akcommonplatformsettings.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akcommonplatformsettings.cs for guid 999d8aab548c51144a2a96729cfb627f
*** assets/wwise/deployment/api/handwritten/common/akenumflagattribute.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akenumflagattribute.cs for guid b21bb649083b9464790e5932400cef10
*** assets/wwise/deployment/api/handwritten/common/aklogger.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/aklogger.cs for guid 8720b869e0678ba49bd5cee9997f9d68
*** assets/wwise/deployment/api/handwritten/common/akpropagationpathinfoarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akpropagationpathinfoarray.cs for guid 6a1eda8676e00664180c9b3ff2a187b9
*** assets/wwise/deployment/api/handwritten/common/akshowonlyattribute.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akshowonlyattribute.cs for guid 1b28aa60bb0706c4aad2a97253840036
*** assets/wwise/deployment/api/handwritten/common/aksoundengine.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/aksoundengine.cs for guid 04879ab890ef5e44fa5221a7ad5f1a7c
*** assets/wwise/deployment/api/handwritten/common/akutilities.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akutilities.cs for guid d1cd33893b812ef4ab4dd04d04e0fdee
*** assets/wwise/deployment/api/handwritten/common/akwwiseinitializationsettings.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akwwiseinitializationsettings.cs for guid 21c91e63eb1d9e044a78111933c25e62
*** assets/wwise/deployment/api/handwritten/common/akwwisexmlwatcher.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/akwwisexmlwatcher.cs for guid fc436131cd710fb40ad2048243f16731
*** assets/wwise/deployment/api/handwritten/common/arrays replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays for guid 8f8548a8dad29e74d93a159c711accab
*** assets/wwise/deployment/api/handwritten/common/arrays/akacousticsurfacearray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akacousticsurfacearray.cs for guid 266f8e176a36c904883b136cc78782b3
*** assets/wwise/deployment/api/handwritten/common/arrays/akauxsendarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akauxsendarray.cs for guid 6a5300bbeb1778d449b7a095e200ff5d
*** assets/wwise/deployment/api/handwritten/common/arrays/akbasearray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akbasearray.cs for guid 83318c09dbd4114409a189f419398e9f
*** assets/wwise/deployment/api/handwritten/common/arrays/akchannelemitterarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akchannelemitterarray.cs for guid 156551888cd3a6e46b20ba07f94484f6
*** assets/wwise/deployment/api/handwritten/common/arrays/akdiffractionpathinfoarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akdiffractionpathinfoarray.cs for guid bce67fdd56eba72439cd1a6087312f71
*** assets/wwise/deployment/api/handwritten/common/arrays/akexternalsourceinfoarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akexternalsourceinfoarray.cs for guid a18fe35527abc324a892ea16e8afae5f
*** assets/wwise/deployment/api/handwritten/common/arrays/akmidipostarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akmidipostarray.cs for guid c85429eb290b5924f99e3fdd1e458155
*** assets/wwise/deployment/api/handwritten/common/arrays/akobjectinfoarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akobjectinfoarray.cs for guid cdf4357f198d5924298c6995b734ab20
*** assets/wwise/deployment/api/handwritten/common/arrays/akobstructionocclusionvaluesarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akobstructionocclusionvaluesarray.cs for guid 0a0c61f78d9a50d4a8276e4a4ae68ae4
*** assets/wwise/deployment/api/handwritten/common/arrays/akpositionarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akpositionarray.cs for guid 3a4e71de17e2b5c47ace7432f71590ec
*** assets/wwise/deployment/api/handwritten/common/arrays/akreflectionpathinfoarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akreflectionpathinfoarray.cs for guid cb53a9b54fb6c8b4ab0175467abacd96
*** assets/wwise/deployment/api/handwritten/common/arrays/aksourcesettingsarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/aksourcesettingsarray.cs for guid 6e948cd11fa5ecd4280ff0c3c4a556d8
*** assets/wwise/deployment/api/handwritten/common/arrays/aktrianglearray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/aktrianglearray.cs for guid f59823cdaba59104ca91c1002e5753d2
*** assets/wwise/deployment/api/handwritten/common/arrays/akvertexarray.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/arrays/akvertexarray.cs for guid 4580ad68a292c5c48aa6bb83a24204fd
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects for guid 5b309877e823d4f4297bbee94397f038
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseacoustictexturereference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseacoustictexturereference.cs for guid 3cdf4c1f74cb57b49b3055555782f5e3
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseauxbusreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseauxbusreference.cs for guid 0f8b6598de2a94e46a83a0ff9304c536
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwisebankreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwisebankreference.cs for guid fb4af4daf6607cc4981954670e115bd3
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseeventreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseeventreference.cs for guid 60553d71f556ed948b46fd64b5eee758
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseobjectreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseobjectreference.cs for guid 7d3951b556a192f468640c451c83ab79
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseobjecttype.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseobjecttype.cs for guid 44f56db915ed79d4eb6899eca4d66ca5
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwisertpcreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwisertpcreference.cs for guid 96cc1fc0e7049ee4e8029dda0cdd6ff4
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwisestategroupreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwisestategroupreference.cs for guid d0a9654e63da74c4a96db789bb0e4174
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwisestatereference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwisestatereference.cs for guid f7d6da1f25593c949b5c82b3a930820e
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseswitchgroupreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseswitchgroupreference.cs for guid 07546441e3e49314797e5e6de8a8f1ff
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseswitchreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwiseswitchreference.cs for guid 10db94f3062d3e443808becffe4739bf
*** assets/wwise/deployment/api/handwritten/common/wwiseobjects/wwisetriggerreference.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwiseobjects/wwisetriggerreference.cs for guid 69d265a9ddbb02545a07b62b8cc91f8b
*** assets/wwise/deployment/api/handwritten/common/wwisetypes replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes for guid de6cd51a6a9f1144ab877869b579ce93
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseacoustictexture.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseacoustictexture.cs for guid 20f8606680b579a41a763aa40d6ea70f
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseauxbus.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseauxbus.cs for guid 277fdc392fb9c354a8bad5bc71384f04
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebank.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebank.cs for guid 94fccdf347338fb4c8f1e8ec9a865d94
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebasegrouptype.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebasegrouptype.cs for guid 7b37ca43fab9f1042bcf9b94b3832f88
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebasetype.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisebasetype.cs for guid 8f59cd59ccc1a314ea5e1c4147a9e6b1
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisecallbackflags.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisecallbackflags.cs for guid c2810397646b9d348b38ebe09dea5b9a
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseevent.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseevent.cs for guid c4c8404097e92a94ca1f51fada1b77fd
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisertpc.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisertpc.cs for guid 180f3cb3911c1554cbd00e03efe903f7
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisestate.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisestate.cs for guid 79d373b2d91e7524daf48f9e37460338
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseswitch.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwiseswitch.cs for guid 1cf595eb5c4dd624586f0cf2dce90afe
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisetrigger.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisetrigger.cs for guid 24da7a3f6dbc74845a3fb046c89d16f1
*** assets/wwise/deployment/api/handwritten/common/wwisetypes/akwwisetypemigration.cs replaces assets/fuck/wwise/deployment/api/handwritten/common/wwisetypes/akwwisetypemigration.cs for guid 87aa1839630b72344afdc1de38e581c8
*** assets/wwise/deployment/api/handwritten/mac replaces assets/fuck/wwise/deployment/api/handwritten/mac for guid 8e25aa952c393a74aabbe0afb6568195
*** assets/wwise/deployment/api/handwritten/mac/akmacsettings.cs replaces assets/fuck/wwise/deployment/api/handwritten/mac/akmacsettings.cs for guid 473eef0204994d54db0c6184b3f23792
*** assets/wwise/deployment/api/handwritten/waapi replaces assets/fuck/wwise/deployment/api/handwritten/waapi for guid 5f89887af7497c846962bac75483d0bc
*** assets/wwise/deployment/api/handwritten/waapi/akwaapiclient.cs replaces assets/fuck/wwise/deployment/api/handwritten/waapi/akwaapiclient.cs for guid 98949c183a4c42345afb0cca5f37cfe6
*** assets/wwise/deployment/api/handwritten/waapi/akwaapiclient_pinvoke.cs replaces assets/fuck/wwise/deployment/api/handwritten/waapi/akwaapiclient_pinvoke.cs for guid 4ab3a25d6f80da44f8919bfeaea0dd2e
*** assets/wwise/deployment/api/handwritten/windows replaces assets/fuck/wwise/deployment/api/handwritten/windows for guid 016f82df9af6ffc49ba928ad75651a53
*** assets/wwise/deployment/api/handwritten/windows/akwindowssettings.cs replaces assets/fuck/wwise/deployment/api/handwritten/windows/akwindowssettings.cs for guid 061f6261ec5278645bdb9aa854e15148
*** assets/wwise/deployment/akwwisesdkversion.h replaces assets/fuck/wwise/deployment/akwwisesdkversion.h for guid 1055d07d9f9a9564c9d866113025e31c
*** assets/wwise/deployment/components replaces assets/fuck/wwise/deployment/components for guid 8805bd6ca9ae8974c8483596b96957fc
*** assets/wwise/deployment/components/akambient.cs replaces assets/fuck/wwise/deployment/components/akambient.cs for guid 86b8222e4a7dc6242928b4e3a926f557
*** assets/wwise/deployment/components/akaudiolistener.cs replaces assets/fuck/wwise/deployment/components/akaudiolistener.cs for guid 48eb1a86c5952074d832ea4247774ee9
*** assets/wwise/deployment/components/akbank.cs replaces assets/fuck/wwise/deployment/components/akbank.cs for guid 2b1fa1f44165be849b80c9e2e449f242
*** assets/wwise/deployment/components/akemitterobstructionocclusion.cs replaces assets/fuck/wwise/deployment/components/akemitterobstructionocclusion.cs for guid 12e930d57a4329e4e8c3cbf8244e6a7c
*** assets/wwise/deployment/components/akenvironment.cs replaces assets/fuck/wwise/deployment/components/akenvironment.cs for guid b1f24d661aa14a148922354baad50abd
*** assets/wwise/deployment/components/akenvironmentportal.cs replaces assets/fuck/wwise/deployment/components/akenvironmentportal.cs for guid 15b301d735f73814d8b3857517e772f3
*** assets/wwise/deployment/components/akevent.cs replaces assets/fuck/wwise/deployment/components/akevent.cs for guid 9827b41209232ca49b0f2d7f9909b868
*** assets/wwise/deployment/components/akeventcallbackdata.cs replaces assets/fuck/wwise/deployment/components/akeventcallbackdata.cs for guid 31b61bc34784a054a9754daab9695824
*** assets/wwise/deployment/components/akeventplayable.cs replaces assets/fuck/wwise/deployment/components/akeventplayable.cs for guid 07540751fcd405c43ba81a3bc5f4bc52
*** assets/wwise/deployment/components/akeventtrack.cs replaces assets/fuck/wwise/deployment/components/akeventtrack.cs for guid e15fa9dc990e2bb4dba1c3e4ebbf24cc
*** assets/wwise/deployment/components/akgameobj.cs replaces assets/fuck/wwise/deployment/components/akgameobj.cs for guid 1326ae78a8c23e448a8cf02ca680cbab
*** assets/wwise/deployment/components/akgameobjenvironmentdata.cs replaces assets/fuck/wwise/deployment/components/akgameobjenvironmentdata.cs for guid 7e824457f37247242928cbd8cb6fa589
*** assets/wwise/deployment/components/akgameobjlistenerlist.cs replaces assets/fuck/wwise/deployment/components/akgameobjlistenerlist.cs for guid 3ec9c4b7006f12544b7e7337e5809997
*** assets/wwise/deployment/components/akgameobjposoffsetdata.cs replaces assets/fuck/wwise/deployment/components/akgameobjposoffsetdata.cs for guid 79f75b8595b444d41a9b82a64f21c711
*** assets/wwise/deployment/components/akgameobjpositiondata.cs replaces assets/fuck/wwise/deployment/components/akgameobjpositiondata.cs for guid 97a8746fcd90b164fbb061ad7576c0e9
*** assets/wwise/deployment/components/akgameobjpositionoffsetdata.cs replaces assets/fuck/wwise/deployment/components/akgameobjpositionoffsetdata.cs for guid d90c772bb1e77b140810e0b32fb3b3c4
*** assets/wwise/deployment/components/akinitializer.cs replaces assets/fuck/wwise/deployment/components/akinitializer.cs for guid 2d3b8463114039642a2a9ba62188b78b
*** assets/wwise/deployment/components/akmembankloader.cs replaces assets/fuck/wwise/deployment/components/akmembankloader.cs for guid 3c70e7e64b74d604ab3a8c489fc8317d
*** assets/wwise/deployment/components/akobstructionocclusion.cs replaces assets/fuck/wwise/deployment/components/akobstructionocclusion.cs for guid 3983d1b630d61584788a5ae5d233b0ef
*** assets/wwise/deployment/components/akrtpcplayable.cs replaces assets/fuck/wwise/deployment/components/akrtpcplayable.cs for guid 8a73bc8b236b3874b96df639536ac903
*** assets/wwise/deployment/components/akrtpctrack.cs replaces assets/fuck/wwise/deployment/components/akrtpctrack.cs for guid 20757c75dfb09a143a654cc6efef756d
*** assets/wwise/deployment/components/akroom.cs replaces assets/fuck/wwise/deployment/components/akroom.cs for guid 6042c878239aaa745803ea24ebeca6e4
*** assets/wwise/deployment/components/akroomportal.cs replaces assets/fuck/wwise/deployment/components/akroomportal.cs for guid 5728fdd97aef04143ba6d8663d8a3942
*** assets/wwise/deployment/components/akroomportalobstruction.cs replaces assets/fuck/wwise/deployment/components/akroomportalobstruction.cs for guid 4d67f89e14c486144925675a6d910bf9
*** assets/wwise/deployment/components/aksoundenginecontroller.cs replaces assets/fuck/wwise/deployment/components/aksoundenginecontroller.cs for guid bbf5060f9e5983a44905d42e5813f115
*** assets/wwise/deployment/components/akspatialaudiobase.cs replaces assets/fuck/wwise/deployment/components/akspatialaudiobase.cs for guid 5cdd95acb442aa24dadb26508c32860b
*** assets/wwise/deployment/components/akspatialaudioemitter.cs replaces assets/fuck/wwise/deployment/components/akspatialaudioemitter.cs for guid 44feb9d672f2c4a48a100f0a83894cae
*** assets/wwise/deployment/components/akspatialaudiolistener.cs replaces assets/fuck/wwise/deployment/components/akspatialaudiolistener.cs for guid 8e601a0da17b45548bda828b1fc7ffda
*** assets/wwise/deployment/components/akstate.cs replaces assets/fuck/wwise/deployment/components/akstate.cs for guid d4581f292a2d3174d90184799ed2d058
*** assets/wwise/deployment/components/aksurfacereflector.cs replaces assets/fuck/wwise/deployment/components/aksurfacereflector.cs for guid 3f272fb3b803442429c2b24e1262d0d6
*** assets/wwise/deployment/components/akswitch.cs replaces assets/fuck/wwise/deployment/components/akswitch.cs for guid ca19fc728b582ac4c8d9b4285d7fb718
*** assets/wwise/deployment/components/akterminator.cs replaces assets/fuck/wwise/deployment/components/akterminator.cs for guid 7b687d6c3848aab4da620e8105b57105
*** assets/wwise/deployment/components/aktriggerbase.cs replaces assets/fuck/wwise/deployment/components/aktriggerbase.cs for guid 2255783c7b525bf45b69b8217c4e4d52
*** assets/wwise/deployment/components/aktriggercollisionenter.cs replaces assets/fuck/wwise/deployment/components/aktriggercollisionenter.cs for guid a1c2a0cbc9765c342992a37fba5cce71
*** assets/wwise/deployment/components/aktriggercollisionexit.cs replaces assets/fuck/wwise/deployment/components/aktriggercollisionexit.cs for guid 4347806f50d072e4da4e89f18f42775d
*** assets/wwise/deployment/components/aktriggerdisable.cs replaces assets/fuck/wwise/deployment/components/aktriggerdisable.cs for guid fcf4e7aaff93fa74488584c3f87df93a
*** assets/wwise/deployment/components/aktriggerenable.cs replaces assets/fuck/wwise/deployment/components/aktriggerenable.cs for guid 416f5c508350a52458fde062c816cfc5
*** assets/wwise/deployment/components/aktriggerenter.cs replaces assets/fuck/wwise/deployment/components/aktriggerenter.cs for guid 95c81a82bce1c194cbb65c32b65fe30f
*** assets/wwise/deployment/components/aktriggerexit.cs replaces assets/fuck/wwise/deployment/components/aktriggerexit.cs for guid 22478a9b2022e6241856f4821945bc53
*** assets/wwise/deployment/components/aktriggerhandler.cs replaces assets/fuck/wwise/deployment/components/aktriggerhandler.cs for guid da77842f8b5fd394ab707b8bb98a2c63
*** assets/wwise/deployment/components/aktriggermousedown.cs replaces assets/fuck/wwise/deployment/components/aktriggermousedown.cs for guid b1c03ed983a3c724d8c96b5b2965b9bf
*** assets/wwise/deployment/components/aktriggermouseenter.cs replaces assets/fuck/wwise/deployment/components/aktriggermouseenter.cs for guid 6923beceb441e234f8e0db47a2faf10a
*** assets/wwise/deployment/components/aktriggermouseexit.cs replaces assets/fuck/wwise/deployment/components/aktriggermouseexit.cs for guid 0876a3d1243c9c8429ea9abe1966391d
*** assets/wwise/deployment/components/aktriggermouseup.cs replaces assets/fuck/wwise/deployment/components/aktriggermouseup.cs for guid 974b30615a7922f4a980b7b51b27ba2f
*** assets/wwise/deployment/plugins replaces assets/fuck/wwise/deployment/plugins for guid 1554eabdd89cb7d46b057b78595d24ba
*** assets/wwise/deployment/plugins/mac replaces assets/fuck/wwise/deployment/plugins/mac for guid 6df58020f305dab429758bea70448aaa
*** assets/wwise/deployment/plugins/mac/dsp replaces assets/fuck/wwise/deployment/plugins/mac/dsp for guid 809b2152efa19a34ba92dcd3a25c0a52
*** assets/wwise/deployment/plugins/mac/dsp/libakaudioinput.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakaudioinput.bundle for guid 0bff550654595984d92cec3fb800576b
*** assets/wwise/deployment/plugins/mac/dsp/libakcompressor.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakcompressor.bundle for guid f82837e9cfafff54ab172a237c809be0
*** assets/wwise/deployment/plugins/mac/dsp/libakconvolutionreverb.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakconvolutionreverb.bundle for guid 0cb3b34699aaea6459a2f780a18fb9a4
*** assets/wwise/deployment/plugins/mac/dsp/libakdelay.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakdelay.bundle for guid 7e2b702fa3c23cd4f95475949af02e26
*** assets/wwise/deployment/plugins/mac/dsp/libakexpander.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakexpander.bundle for guid d0ae9121f33290c498e3b7089d019bc9
*** assets/wwise/deployment/plugins/mac/dsp/libakflanger.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakflanger.bundle for guid dcd30db11631fe34ab71dc95916b76ae
*** assets/wwise/deployment/plugins/mac/dsp/libakgain.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakgain.bundle for guid c87ba818bed80ff41aa8fcb60f2a40c7
*** assets/wwise/deployment/plugins/mac/dsp/libakguitardistortion.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakguitardistortion.bundle for guid 908fa2c3d4b15f2498aec0687fef5c51
*** assets/wwise/deployment/plugins/mac/dsp/libakharmonizer.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakharmonizer.bundle for guid 1b3c760b43e70e1468b984aed2821d86
*** assets/wwise/deployment/plugins/mac/dsp/libakmatrixreverb.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakmatrixreverb.bundle for guid ac2631fdd4301e249aa04491ea270d54
*** assets/wwise/deployment/plugins/mac/dsp/libakparametriceq.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakparametriceq.bundle for guid 8ff70c639b1d18e45b242906b05695d8
*** assets/wwise/deployment/plugins/mac/dsp/libakpeaklimiter.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakpeaklimiter.bundle for guid 7673dea0555097b4e8c07c20edcbeb74
*** assets/wwise/deployment/plugins/mac/dsp/libakpitchshifter.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakpitchshifter.bundle for guid 7fd6bff4d0aa74247a71234cac842106
*** assets/wwise/deployment/plugins/mac/dsp/libakrecorder.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakrecorder.bundle for guid 995186a23db6b0e4cbb68f25d3b234f9
*** assets/wwise/deployment/plugins/mac/dsp/libakreflect.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakreflect.bundle for guid c3e42c49550b10646a19e6b96a56e6cb
*** assets/wwise/deployment/plugins/mac/dsp/libakroomverb.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakroomverb.bundle for guid d82a9a0caaedb2841a224c6044c52e18
*** assets/wwise/deployment/plugins/mac/dsp/libaksilencegenerator.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksilencegenerator.bundle for guid 38e220e8fd5c3094198a59c5ee9ad23e
*** assets/wwise/deployment/plugins/mac/dsp/libaksinetone.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksinetone.bundle for guid 50c22aff265d7844b984a21334c1d8b0
*** assets/wwise/deployment/plugins/mac/dsp/libaksoundseedair.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksoundseedair.bundle for guid 336e7fc61e10baf43baaa76a5cab1d2a
*** assets/wwise/deployment/plugins/mac/dsp/libaksoundseedgrain.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksoundseedgrain.bundle for guid 39235c870f6d21e459adc6276df2f242
*** assets/wwise/deployment/plugins/mac/dsp/libaksoundseedimpact.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksoundseedimpact.bundle for guid f2df5706f50a610489106b6b34e551cd
*** assets/wwise/deployment/plugins/mac/dsp/libakstereodelay.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libakstereodelay.bundle for guid 9eebaaaea68c4704d90d27d9f35787b7
*** assets/wwise/deployment/plugins/mac/dsp/libaksynthone.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaksynthone.bundle for guid ba7e25630abac614caa05fad25e0a694
*** assets/wwise/deployment/plugins/mac/dsp/libaktimestretch.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaktimestretch.bundle for guid a04c9584ba5bc724ba9183be3fe5489b
*** assets/wwise/deployment/plugins/mac/dsp/libaktonegen.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaktonegen.bundle for guid c8c07d198e214b4459fd5a0939310ad0
*** assets/wwise/deployment/plugins/mac/dsp/libaktremolo.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libaktremolo.bundle for guid a9f3b71936938094a80317fb00413d34
*** assets/wwise/deployment/plugins/mac/dsp/libauro.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libauro.bundle for guid d0b7b39710037a342a87190ae2b43c32
*** assets/wwise/deployment/plugins/mac/dsp/libcrankcaseaudiorevmodelplayer.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libcrankcaseaudiorevmodelplayer.bundle for guid f32be9887c310284fa710680f632e020
*** assets/wwise/deployment/plugins/mac/dsp/libmcdsp.bundle replaces assets/fuck/wwise/deployment/plugins/mac/dsp/libmcdsp.bundle for guid a02044c7ca0345f4194900fd21ff18d2
*** assets/wwise/deployment/plugins/mac/debug replaces assets/fuck/wwise/deployment/plugins/mac/debug for guid 7a28e5ce42ad8ec40934fefd6c90ca76
*** assets/wwise/deployment/plugins/mac/debug/aksoundengine.bundle replaces assets/fuck/wwise/deployment/plugins/mac/debug/aksoundengine.bundle for guid 8526a1f66dbd3714283d86e1b91e5622
*** assets/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents for guid 99e7b3f7c50bfaf4d84a0ab49d054808
*** assets/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents/macos for guid 54ef1b86ba411d745baeef1ec41aa07b
*** assets/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents/macos/aksoundengine replaces assets/fuck/wwise/deployment/plugins/mac/debug/aksoundengine.bundle/contents/macos/aksoundengine for guid 1296cdd41225cf5429db2fcd6af0b732
*** assets/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle replaces assets/fuck/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle for guid df5cd8b69295cf448aa5f911e5b97835
*** assets/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents for guid e903c3afda3fdc940b20faf9dda266cb
*** assets/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents/macos for guid 1ca61f50d1b21154790a255a788c6a23
*** assets/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents/macos/akwaapiclient replaces assets/fuck/wwise/deployment/plugins/mac/debug/akwaapiclient.bundle/contents/macos/akwaapiclient for guid ba5bf2f894c57ee4e89fefc848c2edda
*** assets/wwise/deployment/plugins/mac/profile replaces assets/fuck/wwise/deployment/plugins/mac/profile for guid 0b58e0ad4d4d4464d964a85fa413c275
*** assets/wwise/deployment/plugins/mac/profile/aksoundengine.bundle replaces assets/fuck/wwise/deployment/plugins/mac/profile/aksoundengine.bundle for guid b5289ff0ce1d0a642a0dcfcfd7937394
*** assets/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents for guid e0ca40786b40cdd4aafef24f0fa839bf
*** assets/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents/macos for guid 7e008b4bf160e6649b0d5ee5959e7c1c
*** assets/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents/macos/aksoundengine replaces assets/fuck/wwise/deployment/plugins/mac/profile/aksoundengine.bundle/contents/macos/aksoundengine for guid cd7d3388ea8fa2d4f879bee6ae6efd7f
*** assets/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle replaces assets/fuck/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle for guid bc91c8472af87fe4eb296cf5952e4ebb
*** assets/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents for guid 176b46d3fdd774446ad53ff1301967a6
*** assets/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents/macos for guid cf4e143b5e200954aa2431859ff83160
*** assets/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents/macos/akwaapiclient replaces assets/fuck/wwise/deployment/plugins/mac/profile/akwaapiclient.bundle/contents/macos/akwaapiclient for guid 79138f06a87b7864d8562ae336d70af1
*** assets/wwise/deployment/plugins/mac/release replaces assets/fuck/wwise/deployment/plugins/mac/release for guid 3ea44183975d8894d841863adb3f3ff5
*** assets/wwise/deployment/plugins/mac/release/aksoundengine.bundle replaces assets/fuck/wwise/deployment/plugins/mac/release/aksoundengine.bundle for guid 603be0a438ef2a243a505e65ec31f2be
*** assets/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents for guid a129c2d99801f034d98cf8b391f21a44
*** assets/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents/macos for guid 0c9dbdd093fad8740acbec3de7300cd9
*** assets/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents/macos/aksoundengine replaces assets/fuck/wwise/deployment/plugins/mac/release/aksoundengine.bundle/contents/macos/aksoundengine for guid 5c022f05deaff254daf77d5bba9d1f90
*** assets/wwise/deployment/plugins/mac/release/akwaapiclient.bundle replaces assets/fuck/wwise/deployment/plugins/mac/release/akwaapiclient.bundle for guid 4061224a800e02447bbfaa5ee4385ddc
*** assets/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents replaces assets/fuck/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents for guid a1e46e15a40c65d4faf718843dc2b18e
*** assets/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents/macos replaces assets/fuck/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents/macos for guid 690b4ab8bd715e045895883fdd63db1c
*** assets/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents/macos/akwaapiclient replaces assets/fuck/wwise/deployment/plugins/mac/release/akwaapiclient.bundle/contents/macos/akwaapiclient for guid 7418648d9f77dd743b66c8a899ee6b10
*** assets/wwise/deployment/plugins/windows replaces assets/fuck/wwise/deployment/plugins/windows for guid 9c07c3388cb8a654180f246eb1b76efa
*** assets/wwise/deployment/plugins/windows/x86 replaces assets/fuck/wwise/deployment/plugins/windows/x86 for guid a67677f87a810fd418177941ecf1b4f2
*** assets/wwise/deployment/plugins/windows/x86/dsp replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp for guid 6c63c41e5823bb9408a5382e4c8cf2eb
*** assets/wwise/deployment/plugins/windows/x86/dsp/akaudioinput.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akaudioinput.dll for guid b0c18994ae8299d40ae1071d3fee9f44
*** assets/wwise/deployment/plugins/windows/x86/dsp/akcompressor.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akcompressor.dll for guid 257fbd7363faa454c967631a2c9492ad
*** assets/wwise/deployment/plugins/windows/x86/dsp/akconvolutionreverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akconvolutionreverb.dll for guid 8923e02b1620f574eaf283398a662eb5
*** assets/wwise/deployment/plugins/windows/x86/dsp/akdelay.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akdelay.dll for guid 6d4073f593af39749b6a7999a42d96d6
*** assets/wwise/deployment/plugins/windows/x86/dsp/akexpander.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akexpander.dll for guid e52f4374805ce4345bd10195534cbc7c
*** assets/wwise/deployment/plugins/windows/x86/dsp/akflanger.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akflanger.dll for guid 37e2753a338ff2c41aaf68520145c43e
*** assets/wwise/deployment/plugins/windows/x86/dsp/akgain.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akgain.dll for guid 3d5777deaab19084282d8d081a9b6fb2
*** assets/wwise/deployment/plugins/windows/x86/dsp/akguitardistortion.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akguitardistortion.dll for guid d002b9f22c9defb498f7f393121fdbfc
*** assets/wwise/deployment/plugins/windows/x86/dsp/akharmonizer.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akharmonizer.dll for guid c4b889f6b8b0f1742abaa75651d5608b
*** assets/wwise/deployment/plugins/windows/x86/dsp/akmatrixreverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akmatrixreverb.dll for guid ca7c3c039a71bda46b2b4e39517ba506
*** assets/wwise/deployment/plugins/windows/x86/dsp/akmotion.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akmotion.dll for guid a89fe0ca0071edc459d1fee21ba95095
*** assets/wwise/deployment/plugins/windows/x86/dsp/akparametriceq.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akparametriceq.dll for guid d4108944e65713a4a8aaab2e1f7e308f
*** assets/wwise/deployment/plugins/windows/x86/dsp/akpeaklimiter.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akpeaklimiter.dll for guid 024bd7358589c4d499a45409d9d46843
*** assets/wwise/deployment/plugins/windows/x86/dsp/akpitchshifter.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akpitchshifter.dll for guid b041c916899816f40a54b2089f67d83d
*** assets/wwise/deployment/plugins/windows/x86/dsp/akrecorder.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akrecorder.dll for guid f95d3599f09742a47863c35935703b5e
*** assets/wwise/deployment/plugins/windows/x86/dsp/akreflect.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akreflect.dll for guid afd4df03a06ec4f4f8999680109f1aed
*** assets/wwise/deployment/plugins/windows/x86/dsp/akroomverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akroomverb.dll for guid 2b8db9fa3c0161f42b656c7350b75ac2
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksilencegenerator.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksilencegenerator.dll for guid 1b36fa7b574e2f74ea70c76af7880e3c
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksinetone.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksinetone.dll for guid b8b43f95d5b5ceb448ffeba5e80491a6
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksoundseedair.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksoundseedair.dll for guid 149239744e199e741ab708554f49ac18
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksoundseedgrain.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksoundseedgrain.dll for guid 240b50a816beccb48ad398091c1d8390
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksoundseedimpact.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksoundseedimpact.dll for guid fd0a6ab0e7fc40640b5035cd2ed4d4e3
*** assets/wwise/deployment/plugins/windows/x86/dsp/akstereodelay.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/akstereodelay.dll for guid 1a9de326258b38344a3172c8aeae01e6
*** assets/wwise/deployment/plugins/windows/x86/dsp/aksynthone.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aksynthone.dll for guid de421d4ee0e620f468d8e90d06c3fc0c
*** assets/wwise/deployment/plugins/windows/x86/dsp/aktimestretch.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aktimestretch.dll for guid ddf1834832ff40442950a02f6fd8ea02
*** assets/wwise/deployment/plugins/windows/x86/dsp/aktonegen.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aktonegen.dll for guid 9b49ca3d9c109f749b9388c0ee29fe97
*** assets/wwise/deployment/plugins/windows/x86/dsp/aktremolo.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/aktremolo.dll for guid fbacb7fee11f65446aeaf7eaea761026
*** assets/wwise/deployment/plugins/windows/x86/dsp/auro.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/auro.dll for guid 2615bf7b94f57204485e1f9c2e1404c4
*** assets/wwise/deployment/plugins/windows/x86/dsp/crankcaseaudiorevmodelplayer.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/crankcaseaudiorevmodelplayer.dll for guid e87d272972d8e10488056ce892ac5c1d
*** assets/wwise/deployment/plugins/windows/x86/dsp/msspatial.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/msspatial.dll for guid 80282db89b2060343b2eb3633d9ccd2c
*** assets/wwise/deployment/plugins/windows/x86/dsp/mcdsp.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/mcdsp.dll for guid e1f52736cd57ddc49b9ef364d9dd68e1
*** assets/wwise/deployment/plugins/windows/x86/dsp/izotope.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/dsp/izotope.dll for guid be73b293234dbe7488ed50d8c30f5665
*** assets/wwise/deployment/plugins/windows/x86/debug replaces assets/fuck/wwise/deployment/plugins/windows/x86/debug for guid 5710777b1d9b1d14bba3dd02296843c9
*** assets/wwise/deployment/plugins/windows/x86/debug/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/debug/aksoundengine.dll for guid bd75eea55d2ef5c4f87562432489de50
*** assets/wwise/deployment/plugins/windows/x86/debug/aksoundengine.ilk replaces assets/fuck/wwise/deployment/plugins/windows/x86/debug/aksoundengine.ilk for guid 8f0ce6ac2bc9da647af048fdfa203824
*** assets/wwise/deployment/plugins/windows/x86/debug/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/debug/akwaapiclient.dll for guid b82ebe0eaa53a9143a9b392ad930b213
*** assets/wwise/deployment/plugins/windows/x86/debug/akwaapiclient.ilk replaces assets/fuck/wwise/deployment/plugins/windows/x86/debug/akwaapiclient.ilk for guid 547d4c2abc7e56f4f8e639cebf61efb5
*** assets/wwise/deployment/plugins/windows/x86/profile replaces assets/fuck/wwise/deployment/plugins/windows/x86/profile for guid 6ceeded5943cf8e43af7ecbfc2ff810a
*** assets/wwise/deployment/plugins/windows/x86/profile/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/profile/aksoundengine.dll for guid 982ec31d5a285ea49b46c3986e83bfee
*** assets/wwise/deployment/plugins/windows/x86/profile/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/profile/akwaapiclient.dll for guid a5a6ab5338e617d44b075c7c0c9fe934
*** assets/wwise/deployment/plugins/windows/x86/release replaces assets/fuck/wwise/deployment/plugins/windows/x86/release for guid 07bd2d35df501db4eb7843ce9924e746
*** assets/wwise/deployment/plugins/windows/x86/release/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/release/aksoundengine.dll for guid fecc0d7d9b10a5449b877f9f2c4a4ea0
*** assets/wwise/deployment/plugins/windows/x86/release/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86/release/akwaapiclient.dll for guid f07aedd7670d56445b5d1b48f2884a57
*** assets/wwise/deployment/plugins/windows/x86_64 replaces assets/fuck/wwise/deployment/plugins/windows/x86_64 for guid c741f89de7847fa4fb9176df925c9bd2
*** assets/wwise/deployment/plugins/windows/x86_64/dsp replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp for guid 992a18e07580205499df2cdeaf69549e
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akaudioinput.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akaudioinput.dll for guid 26fa49c18f046dc4dadcb47cdd3271a9
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akcompressor.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akcompressor.dll for guid 8eea6abaed9382c45ac1a97858cc0991
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akconvolutionreverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akconvolutionreverb.dll for guid 55f499fbc90659f4789ea30c8f32af68
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akdelay.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akdelay.dll for guid 5db3348437595ae4184633997193ff84
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akexpander.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akexpander.dll for guid 9b1a8a0ba3f1e254999967114ce23dfc
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akflanger.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akflanger.dll for guid 6dc96a310d75d8446b28a5f6327a9941
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akgain.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akgain.dll for guid 00c4b2a5a97fb374d98b04bf7753d1ca
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akguitardistortion.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akguitardistortion.dll for guid 83227ff79ec25ed4db47c52c0697af17
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akharmonizer.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akharmonizer.dll for guid e3cde95ac14ab844a83d1a2240ccff03
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akmatrixreverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akmatrixreverb.dll for guid fea54c29c0807024098bf1fdab756363
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akmotion.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akmotion.dll for guid 3dfe5d0913459f84089e5aad8d2162de
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akparametriceq.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akparametriceq.dll for guid be8b44c66bf1593419348b5cddeef584
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akpeaklimiter.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akpeaklimiter.dll for guid 55a6baa412e05a74fa8aabdafa986ef8
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akpitchshifter.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akpitchshifter.dll for guid c972509a28e7c1e4eac43e961372a3e8
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akrecorder.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akrecorder.dll for guid 40e7460175849df4a9b1d85a9bbf1893
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akreflect.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akreflect.dll for guid 2e64615baf3465041880a8830626261a
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akroomverb.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akroomverb.dll for guid e0ff3870159425447865b96eaf6070da
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksilencegenerator.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksilencegenerator.dll for guid a5cf25a2b5ad88d4482fbb925bb5714c
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksinetone.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksinetone.dll for guid 47068bfca0a049d46bcd223d259a8168
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedair.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedair.dll for guid 1da25282a1808e240b4416d0546a45dc
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedgrain.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedgrain.dll for guid 32be29cc742cddb4d92b1e5e1a60894e
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedimpact.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksoundseedimpact.dll for guid 9bf6f14b43659f64999fcd5041e8feee
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/akstereodelay.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/akstereodelay.dll for guid 9c7cb432a371ec94ca3e9b14be38132f
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aksynthone.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aksynthone.dll for guid 9cba1084e68695e479d554813d1973e3
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aktimestretch.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aktimestretch.dll for guid 9c9a2c1331f4e454186f72283a5e4e34
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aktonegen.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aktonegen.dll for guid 8189b07fb6aa0834ea355da14fd5ca6e
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/aktremolo.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/aktremolo.dll for guid 7e7f5ae665331394ea20285754b51eb1
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/auro.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/auro.dll for guid 96ab1c3cc9009b34995be722a945b62b
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/crankcaseaudiorevmodelplayer.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/crankcaseaudiorevmodelplayer.dll for guid 515c9afd5874904459dc6852041bb302
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/msspatial.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/msspatial.dll for guid 30937513c3efe1347b625112a55ac8b0
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/mcdsp.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/mcdsp.dll for guid a9fc58e8724d63c43900443d05a21ae6
*** assets/wwise/deployment/plugins/windows/x86_64/dsp/izotope.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/dsp/izotope.dll for guid 932c693e265a92142a88646666522c02
*** assets/wwise/deployment/plugins/windows/x86_64/debug replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/debug for guid fcfedbde158afa54da80048abb786aa6
*** assets/wwise/deployment/plugins/windows/x86_64/debug/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/debug/aksoundengine.dll for guid 8afc9ae62dbfd0c45b6280c783736645
*** assets/wwise/deployment/plugins/windows/x86_64/debug/aksoundengine.ilk replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/debug/aksoundengine.ilk for guid e12c32b167d915543a75d2aa9bf74eeb
*** assets/wwise/deployment/plugins/windows/x86_64/debug/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/debug/akwaapiclient.dll for guid 3a13660b6812f1343a2d2aaba0646447
*** assets/wwise/deployment/plugins/windows/x86_64/debug/akwaapiclient.ilk replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/debug/akwaapiclient.ilk for guid c3707225d77dcb0478ea6c124418e5ab
*** assets/wwise/deployment/plugins/windows/x86_64/profile replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/profile for guid 67af7ee50bca0224f90f9da54d4a293e
*** assets/wwise/deployment/plugins/windows/x86_64/profile/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/profile/aksoundengine.dll for guid 7de2d4d75aa52e640bba925600e15cd7
*** assets/wwise/deployment/plugins/windows/x86_64/profile/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/profile/akwaapiclient.dll for guid c00f1a1f0bf4b134aa5750664effbcd3
*** assets/wwise/deployment/plugins/windows/x86_64/release replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/release for guid 2419e07c51770ba4c8c33318dfed8e2a
*** assets/wwise/deployment/plugins/windows/x86_64/release/aksoundengine.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/release/aksoundengine.dll for guid 0e90470086e113940ad6f28bafd3fba2
*** assets/wwise/deployment/plugins/windows/x86_64/release/akwaapiclient.dll replaces assets/fuck/wwise/deployment/plugins/windows/x86_64/release/akwaapiclient.dll for guid 1b354b6acf2f7624b987c9c4c7fc2e08
*** assets/wwise/documentation replaces assets/fuck/wwise/documentation for guid d8317fca101821c4daccbb2517ca6622
*** assets/wwise/documentation/applecommon replaces assets/fuck/wwise/documentation/applecommon for guid 02c7c197fabd53e40a74fbacc4955e5e
*** assets/wwise/documentation/windows replaces assets/fuck/wwise/documentation/windows for guid 89318e53338b2f3458804fd62b3725e2
*** assets/wwise/editor replaces assets/fuck/wwise/editor for guid be97c360894678547845110e7a4525af
*** assets/wwise/editor/projectdata replaces assets/fuck/wwise/editor/projectdata for guid 89fd53a34295e104391762dc32c20a9f
*** assets/wwise/editor/projectdata/akwwiseprojectdata.asset replaces assets/fuck/wwise/editor/projectdata/akwwiseprojectdata.asset for guid 3c71c1ecaf557c840afa78ee85b6cf35
*** assets/wwise/editor/wwisecomponents replaces assets/fuck/wwise/editor/wwisecomponents for guid bee34dcc19335564c9ee308f69e83d00
*** assets/wwise/editor/wwisecomponents/akambientinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akambientinspector.cs for guid 58d6fedc1594ffd4a82283d9552adabc
*** assets/wwise/editor/wwisecomponents/akaudiolistenerinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akaudiolistenerinspector.cs for guid 96f2eea507202db4ab6b0dec5ff79b44
*** assets/wwise/editor/wwisecomponents/akbankinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akbankinspector.cs for guid 0723eeb9f61439c469064dd40a9e1ec1
*** assets/wwise/editor/wwisecomponents/akbaseinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akbaseinspector.cs for guid 4e0af02bdd7d9bf47877016e56aca2df
*** assets/wwise/editor/wwisecomponents/akenvironmentinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akenvironmentinspector.cs for guid 185cbf88f5528d54cba81a8607c7ef88
*** assets/wwise/editor/wwisecomponents/akenvironmentportalinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akenvironmentportalinspector.cs for guid b8c783e7f7819a940b26a8b7dd13c96c
*** assets/wwise/editor/wwisecomponents/akeventinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akeventinspector.cs for guid 7ad6f41420d12d64894fd5ca39a8fa21
*** assets/wwise/editor/wwisecomponents/akeventplayableinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akeventplayableinspector.cs for guid 00db82b8507c3444d9489b937e76723c
*** assets/wwise/editor/wwisecomponents/akgameobjlistenerlistdrawer.cs replaces assets/fuck/wwise/editor/wwisecomponents/akgameobjlistenerlistdrawer.cs for guid b7b57413f4d7b8f4aa6a790075c4e4e5
*** assets/wwise/editor/wwisecomponents/akgameobjectinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akgameobjectinspector.cs for guid 536fe410665b97c4b9e502c7e6e04167
*** assets/wwise/editor/wwisecomponents/akportalmanager.cs replaces assets/fuck/wwise/editor/wwisecomponents/akportalmanager.cs for guid d8398a2875eb803468d9dc2f33040428
*** assets/wwise/editor/wwisecomponents/akrtpcplayableinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akrtpcplayableinspector.cs for guid 66155211230381847a89e90ef1b21f47
*** assets/wwise/editor/wwisecomponents/akrtpctrackinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akrtpctrackinspector.cs for guid 5b8111d36b3f45f4f892e4c0ea8fd954
*** assets/wwise/editor/wwisecomponents/akroominspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akroominspector.cs for guid cd6df5183befebe44953ba77639abc40
*** assets/wwise/editor/wwisecomponents/akroomportalinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akroomportalinspector.cs for guid 2560571ab86b230458b419b94df12a00
*** assets/wwise/editor/wwisecomponents/akspatialaudiolistenerinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akspatialaudiolistenerinspector.cs for guid a033574c3dfe2754195f24190e5de312
*** assets/wwise/editor/wwisecomponents/akstateinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akstateinspector.cs for guid cec52ab52d251a14094a2238c3a4012f
*** assets/wwise/editor/wwisecomponents/akswitchinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akswitchinspector.cs for guid a2cd2e564a48e504c9b5b4db68f3cb74
*** assets/wwise/editor/wwisecomponents/akunityeventhandlerinspector.cs replaces assets/fuck/wwise/editor/wwisecomponents/akunityeventhandlerinspector.cs for guid 588c5c9237cd5514db5b296ec14a3cff
*** assets/wwise/editor/wwisemenu replaces assets/fuck/wwise/editor/wwisemenu for guid b538ea38e69960846ae78321b8bd6040
*** assets/wwise/editor/wwisemenu/common replaces assets/fuck/wwise/editor/wwisemenu/common for guid cfc3e03a8e335c64c92b755c27721635
*** assets/wwise/editor/wwisemenu/common/akunitybuilderbase.cs replaces assets/fuck/wwise/editor/wwisemenu/common/akunitybuilderbase.cs for guid 38c4491b6ba646e4aae9ff80c4bcb4e4
*** assets/wwise/editor/wwisemenu/common/akunityplugininstallerbase.cs replaces assets/fuck/wwise/editor/wwisemenu/common/akunityplugininstallerbase.cs for guid e351807885b8aae4c94dd4caba7e444c
*** assets/wwise/editor/wwisemenu/common/akwwiseidconverter.cs replaces assets/fuck/wwise/editor/wwisemenu/common/akwwiseidconverter.cs for guid 772e0ff98ee65ef4bb1854240489b013
*** assets/wwise/editor/wwisemenu/mac replaces assets/fuck/wwise/editor/wwisemenu/mac for guid 9a63f503fd8e3a946b9c93e5d9f7525d
*** assets/wwise/editor/wwisemenu/mac/akwwisemenu_mac.cs replaces assets/fuck/wwise/editor/wwisemenu/mac/akwwisemenu_mac.cs for guid 105043ef311df2c48a75cdd9cec183e7
*** assets/wwise/editor/wwisemenu/windows replaces assets/fuck/wwise/editor/wwisemenu/windows for guid e5399b6f74805b64f9e13de4b523899d
*** assets/wwise/editor/wwisemenu/windows/akwwisemenu_windows.cs replaces assets/fuck/wwise/editor/wwisemenu/windows/akwwisemenu_windows.cs for guid 560d98351501b034bbe0da1725291fe8
*** assets/wwise/editor/wwisesetupwizard replaces assets/fuck/wwise/editor/wwisesetupwizard for guid 0716adc08d429174783cb857dddd9ae0
*** assets/wwise/editor/wwisesetupwizard/akbuildpreprocessor.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akbuildpreprocessor.cs for guid 5256b69f140b74b439c8e8e63d7c1cd3
*** assets/wwise/editor/wwisesetupwizard/akpluginactivator.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akpluginactivator.cs for guid 055f3e8fcfa85d044aeb1cd881cef685
*** assets/wwise/editor/wwisesetupwizard/akunitysettingsparser.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akunitysettingsparser.cs for guid 991782d669e06d54b869b3ab7fcd570f
*** assets/wwise/editor/wwisesetupwizard/akwsautils.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akwsautils.cs for guid 7c9853feccfde8e4baf6d7cc394a8035
*** assets/wwise/editor/wwisesetupwizard/akwwisepostimportcallbacksetup.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akwwisepostimportcallbacksetup.cs for guid e49b6bb1af841dc48ba2dd9ff5b1b9d8
*** assets/wwise/editor/wwisesetupwizard/akwwisesettingswindow.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akwwisesettingswindow.cs for guid cbd2e4b249f46584a951d02fd6789801
*** assets/wwise/editor/wwisesetupwizard/akwwisesetupwizard.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akwwisesetupwizard.cs for guid a3447725bab66c8488edd36e89aeb948
*** assets/wwise/editor/wwisesetupwizard/akxboxoneutils.cs replaces assets/fuck/wwise/editor/wwisesetupwizard/akxboxoneutils.cs for guid 2a56dc9474461a7428f399ccbe00793c
*** assets/wwise/editor/wwisetypes replaces assets/fuck/wwise/editor/wwisetypes for guid 1fec9790408529f47a8d1583e7434dc4
*** assets/wwise/editor/wwisetypes/acoustictexturedrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/acoustictexturedrawer.cs for guid f4c488257ef7f8c41a5c9b289a601296
*** assets/wwise/editor/wwisetypes/auxbusdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/auxbusdrawer.cs for guid 65a68049c49ea2c4a8c4cec749442a2f
*** assets/wwise/editor/wwisetypes/bankdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/bankdrawer.cs for guid 8d243dc58039aba4e97ea00c2426c8ca
*** assets/wwise/editor/wwisetypes/basetypedrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/basetypedrawer.cs for guid 61d62619eda94644dacf9b99344070a0
*** assets/wwise/editor/wwisetypes/eventdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/eventdrawer.cs for guid b2bcd5e5d0c1b1743b1bc1dbc3c1af05
*** assets/wwise/editor/wwisetypes/rtpcdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/rtpcdrawer.cs for guid 1ab2a6a8a4015a5458da7ca555086e06
*** assets/wwise/editor/wwisetypes/statedrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/statedrawer.cs for guid 3a9bcd7fa05061542b5996c087bb6d9b
*** assets/wwise/editor/wwisetypes/switchdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/switchdrawer.cs for guid 7d0203a072f9c8d4b8084e9a79b4f68d
*** assets/wwise/editor/wwisetypes/triggerdrawer.cs replaces assets/fuck/wwise/editor/wwisetypes/triggerdrawer.cs for guid bef66a657210f244abebf7fb97facdfc
*** assets/wwise/editor/wwisewindows replaces assets/fuck/wwise/editor/wwisewindows for guid 3273027d408792249820985690d9402d
*** assets/wwise/editor/wwisewindows/akwwisecomponentpicker.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwisecomponentpicker.cs for guid 7a388590c3e80664aa456da0f15e9239
*** assets/wwise/editor/wwisewindows/akwwisepicker.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwisepicker.cs for guid 1397d5d0b23b07b4391106912daf3af2
*** assets/wwise/editor/wwisewindows/akwwiseprojectdata.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwiseprojectdata.cs for guid 15214baafa63e994495d896f9b0ba4bc
*** assets/wwise/editor/wwisewindows/akwwiseprojectinfo.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwiseprojectinfo.cs for guid 75bcb39d82333054dbb1ef1f0b0b65d4
*** assets/wwise/editor/wwisewindows/akwwisetreeview.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwisetreeview.cs for guid ada6eef53a512274d921c459bacf52b0
*** assets/wwise/editor/wwisewindows/akwwisewwubuilder.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwisewwubuilder.cs for guid c1598afb56cb5764785da6f2919a0b15
*** assets/wwise/editor/wwisewindows/akwwisexmlbuilder.cs replaces assets/fuck/wwise/editor/wwisewindows/akwwisexmlbuilder.cs for guid 5cac6c8b99db0e04990b7c671e30fe7b
*** assets/wwise/editor/wwisewindows/treeviewcontrol replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol for guid afadf214f28b47849be70fc12144b2c4
*** assets/wwise/editor/wwisewindows/treeviewcontrol/treeviewcontrol.cs replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/treeviewcontrol.cs for guid 58c455ecda9c97f43b11df50af5b0e87
*** assets/wwise/editor/wwisewindows/treeviewcontrol/treeviewhoverskin.guiskin replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/treeviewhoverskin.guiskin for guid a2fc835d8015ca04986d48bfaeaa5223
*** assets/wwise/editor/wwisewindows/treeviewcontrol/treeviewitem.cs replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/treeviewitem.cs for guid f1be30f6de9c05e40a417226328854ea
*** assets/wwise/editor/wwisewindows/treeviewcontrol/treeviewselectedskin.guiskin replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/treeviewselectedskin.guiskin for guid 274146c849e6c5546b6ae6bc38d3f6c1
*** assets/wwise/editor/wwisewindows/treeviewcontrol/treeviewunselectedskin.guiskin replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/treeviewunselectedskin.guiskin for guid b48be01199ab8f94fb31e603597e621c
*** assets/wwise/editor/wwisewindows/treeviewcontrol/auxbus_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/auxbus_nor.png for guid 7e1fc7b5e39da7640999865e5186ab5d
*** assets/wwise/editor/wwisewindows/treeviewcontrol/blank.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/blank.png for guid 46522940dfca90d458c7e22350796952
*** assets/wwise/editor/wwisewindows/treeviewcontrol/bus_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/bus_nor.png for guid bb83be1ef154afe419eb0e234ef94756
*** assets/wwise/editor/wwisewindows/treeviewcontrol/event_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/event_nor.png for guid f4f2f2140c5bed542b9e55c405a6187a
*** assets/wwise/editor/wwisewindows/treeviewcontrol/folder_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/folder_nor.png for guid 17cef1f956751564cb4dd161851b0746
*** assets/wwise/editor/wwisewindows/treeviewcontrol/guide.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/guide.png for guid 882a34959fc48b843b7a86264509b91c
*** assets/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_collapsed.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_collapsed.png for guid 1066c587074d6a44ab3bc38d1aeee1b6
*** assets/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_expanded.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_expanded.png for guid 59516c57ab75aa5489212afbca94c7fb
*** assets/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_nochild.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/last_sibling_nochild.png for guid c7bfcb49672d00645b38f5be77a3c5cb
*** assets/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_collapsed.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_collapsed.png for guid ad0ce839cd083054b80d0e11b8a19cb8
*** assets/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_expanded.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_expanded.png for guid 2ce78aa0677bc9a459f00afaf8c5c0d7
*** assets/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_nochild.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/middle_sibling_nochild.png for guid f88496f1a94bc8547886aff44b52f39e
*** assets/wwise/editor/wwisewindows/treeviewcontrol/normal_checked.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/normal_checked.png for guid e3a795185bd424549af5758857552261
*** assets/wwise/editor/wwisewindows/treeviewcontrol/normal_unchecked.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/normal_unchecked.png for guid 15a9c89a63925114ba9f97950d221979
*** assets/wwise/editor/wwisewindows/treeviewcontrol/physical_folder_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/physical_folder_nor.png for guid f5abf5933e6e79c4987810fb6fe799d2
*** assets/wwise/editor/wwisewindows/treeviewcontrol/selected_background_color.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/selected_background_color.png for guid 25ba579304372d74389d908fe38ca097
*** assets/wwise/editor/wwisewindows/treeviewcontrol/soundbank_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/soundbank_nor.png for guid df7f34e18cfcfa441bfbb7ed9e634f96
*** assets/wwise/editor/wwisewindows/treeviewcontrol/state_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/state_nor.png for guid 962cba6685f6ce742b0100aa57a32cbd
*** assets/wwise/editor/wwisewindows/treeviewcontrol/stategroup_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/stategroup_nor.png for guid ce8b73afccd7c67469a6090c622e7f1f
*** assets/wwise/editor/wwisewindows/treeviewcontrol/switch_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/switch_nor.png for guid 74e344a9cc4df92448cfae30fe2d3dca
*** assets/wwise/editor/wwisewindows/treeviewcontrol/switchgroup_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/switchgroup_nor.png for guid 4dbee45dc48252c4e8bd107d43bb6290
*** assets/wwise/editor/wwisewindows/treeviewcontrol/workunit_nor.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/workunit_nor.png for guid 51decae4346f8cf439e37876ddb1de31
*** assets/wwise/editor/wwisewindows/treeviewcontrol/wproj.png replaces assets/fuck/wwise/editor/wwisewindows/treeviewcontrol/wproj.png for guid 5b5695cd6d5b7f247b97a8178031b081
*** assets/wwise/extensions replaces assets/fuck/wwise/extensions for guid e3586f846b2ef0749b8f54b27275a11c
*** assets/wwise/extensions/aksoundengine.extensions.cs replaces assets/fuck/wwise/extensions/aksoundengine.extensions.cs for guid e955e7ed0fb7bf348b4eb22e2472ad18
*** assets/wwise/gizmos replaces assets/fuck/wwise/gizmos for guid d0bc9bb6edfc98949af6e87b60e04bd2
*** assets/wwise/gizmos/wwiseaudiospeaker.png replaces assets/fuck/wwise/gizmos/wwiseaudiospeaker.png for guid c6e472be91704234daeee80a0068d27c
*** assets/wwise/gizmos/wwise_white_on_gray.png replaces assets/fuck/wwise/gizmos/wwise_white_on_gray.png for guid 9c3a500b04c4f7644ac1a0a1e33b5602
*** assets/wwise/launcherinfo.json replaces assets/fuck/wwise/launcherinfo.json for guid 18ace990d0044094b9a5d79ede21f65c
*** assets/wwise/resources replaces assets/fuck/wwise/resources for guid 15556fe28ddc76f46a3a184bff4d549e
*** assets/wwise/resources/akwwiseinitializationsettings.asset replaces assets/fuck/wwise/resources/akwwiseinitializationsettings.asset for guid 7de26a66702e04747ad4dbb88576e03f
*** assets/wwise/resources/mac.asset replaces assets/fuck/wwise/resources/mac.asset for guid 961cc881e1e3bb447976f0fdad3c42fa
*** assets/wwise/resources/windows.asset replaces assets/fuck/wwise/resources/windows.asset for guid e11496f15bfdc6c4f9f4803187de451b
*** assets/wwise/tools replaces assets/fuck/wwise/tools for guid 5336f4f776ef0d0468a82a67ad60ecdf
*** assets/wwise/tools/wwiseidconverter.py replaces assets/fuck/wwise/tools/wwiseidconverter.py for guid 31edd18fe0d8d5f43a44812915ca6f86
*** assets/wwise/version.txt replaces assets/fuck/wwise/version.txt for guid 751d2208998ef2542b85962daa255c1f
*** assets/wwisesettings.xml replaces assets/fuck/wwisesettings.xml for guid 3e10b7742d6e11c488cd966944ad8dfd
Refresh: elapses 0.353040 seconds
Refresh: trashing asset fb17620c85fb5462b85c906f15a68a66
Failed to unload 'Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewUnselectedSkin.guiskin'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Resources/Mac.asset'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Resources/Windows.asset'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Resources/AkWwiseInitializationSettings.asset'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewSelectedSkin.guiskin'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Editor/ProjectData/AkWwiseProjectData.asset'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Failed to unload 'Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewHoverSkin.guiskin'
(Filename: /Users/builduser/buildslave/unity/build/Modules/AssetDatabase/Editor/V1/AssetDatabaseV1.cpp Line: 1820)
Hashing assets (403 files)... 0.276 seconds
file read: 0.250 seconds (109.725 MB)
wait for write: 0.002 seconds (I/O thread blocked by consumer, aka CPU bound)
wait for read: 0.089 seconds (CPUT thread waiting for I/O thread, aka disk bound)
hash: 0.172 seconds
Updating Assets/Wwise - GUID: 8526c1c76ded8cd4eb2627b85d705380...
done. [Time: 80.660154 ms]
Unloading 7 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 325.9 MB.
System memory in use after: 264.5 MB.
Unloading 218 unused Assets to reduce memory usage. Loaded Objects now: 814.
Total: 22.577648 ms (FindLiveObjects: 0.831406 ms CreateObjectMapping: 0.027455 ms MarkObjects: 1.479885 ms DeleteObjects: 20.237660 ms)
Updating Assets/Wwise/Resources - GUID: 15556fe28ddc76f46a3a184bff4d549e...
done. [Time: 3.206958 ms]
Updating Assets/Wwise/Tools - GUID: 5336f4f776ef0d0468a82a67ad60ecdf...
done. [Time: 2.617785 ms]
Updating Assets/Wwise/Deployment - GUID: 6ad7bf18759b08242992771c44358048...
done. [Time: 2.140833 ms]
Updating Assets/Wwise/Editor - GUID: be97c360894678547845110e7a4525af...
done. [Time: 2.295451 ms]
Updating Assets/Wwise/Gizmos - GUID: d0bc9bb6edfc98949af6e87b60e04bd2...
done. [Time: 3.161589 ms]
Updating Assets/Wwise/Documentation - GUID: d8317fca101821c4daccbb2517ca6622...
done. [Time: 3.183696 ms]
Updating Assets/Wwise/Extensions - GUID: e3586f846b2ef0749b8f54b27275a11c...
done. [Time: 2.935194 ms]
Updating Assets/Wwise/Documentation/AppleCommon - GUID: 02c7c197fabd53e40a74fbacc4955e5e...
done. [Time: 4.128752 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard - GUID: 0716adc08d429174783cb857dddd9ae0...
done. [Time: 2.483615 ms]
Updating Assets/Wwise/Deployment/Plugins - GUID: 1554eabdd89cb7d46b057b78595d24ba...
done. [Time: 2.943613 ms]
Updating Assets/Wwise/Editor/WwiseTypes - GUID: 1fec9790408529f47a8d1583e7434dc4...
done. [Time: 2.610841 ms]
Updating Assets/Wwise/Tools/WwiseIDConverter.py - GUID: 31edd18fe0d8d5f43a44812915ca6f86...
done. [Time: 46.624130 ms]
Updating Assets/Wwise/Editor/WwiseWindows - GUID: 3273027d408792249820985690d9402d...
done. [Time: 2.809580 ms]
Updating Assets/Wwise/Deployment/Components - GUID: 8805bd6ca9ae8974c8483596b96957fc...
done. [Time: 2.576488 ms]
Updating Assets/Wwise/Documentation/Windows - GUID: 89318e53338b2f3458804fd62b3725e2...
done. [Time: 4.012373 ms]
Updating Assets/Wwise/Editor/ProjectData - GUID: 89fd53a34295e104391762dc32c20a9f...
done. [Time: 2.917629 ms]
Updating Assets/Wwise/Deployment/API - GUID: 91efd851fe69a61499c2e783aa23c29e...
done. [Time: 3.891239 ms]
Updating Assets/Wwise/Editor/WwiseMenu - GUID: b538ea38e69960846ae78321b8bd6040...
done. [Time: 2.730158 ms]
Updating Assets/Wwise/Editor/WwiseComponents - GUID: bee34dcc19335564c9ee308f69e83d00...
done. [Time: 2.290156 ms]
Updating Assets/Wwise/Deployment/API/Generated - GUID: 0ec5fd213b10129449ae5f56558caab6...
done. [Time: 3.054249 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac - GUID: 6df58020f305dab429758bea70448aaa...
done. [Time: 2.304869 ms]
Updating Assets/Wwise/Deployment/Plugins/Android - GUID: 6fef92e4479fd44e9957273032843771...
done. [Time: 23.318362 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Mac - GUID: 9a63f503fd8e3a946b9c93e5d9f7525d...
done. [Time: 3.753559 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows - GUID: 9c07c3388cb8a654180f246eb1b76efa...
done. [Time: 4.078628 ms]
Updating Assets/Wwise/Editor/WwiseWindows/TreeViewControl - GUID: afadf214f28b47849be70fc12144b2c4...
done. [Time: 2.764611 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Common - GUID: cfc3e03a8e335c64c92b755c27721635...
done. [Time: 2.852603 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Windows - GUID: e5399b6f74805b64f9e13de4b523899d...
done. [Time: 2.834499 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Android - GUID: f23882a7df22643a8b8229935f3d3a1e...
done. [Time: 2.934197 ms]
Updating Assets/Wwise/Deployment/API/Handwritten - GUID: f6104b5627911e442a2b14567e7744cc...
done. [Time: 2.439792 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Windows - GUID: 016f82df9af6ffc49ba928ad75651a53...
done. [Time: 4.131730 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile - GUID: 0b58e0ad4d4d4464d964a85fa413c275...
done. [Time: 3.227411 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows - GUID: 0c6e6612239597347887dbff0edd26c1...
done. [Time: 3.898895 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/armeabi-v7a - GUID: 1562b3f45716f4c288a18c05e96859e0...
done. [Time: 3.206731 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common - GUID: 215c0640a84d56844aa358c356deb45b...
done. [Time: 3.177521 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/x86 - GUID: 33130f576201a4785ba72243f8764be5...
done. [Time: 2.687949 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release - GUID: 3ea44183975d8894d841863adb3f3ff5...
done. [Time: 2.691763 ms]
Updating Assets/Wwise/Deployment/API/Generated/Android - GUID: 4367f36de9b644b5eb6b7f615cf7e47d...
done. [Time: 3.482480 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/WAAPI - GUID: 5f89887af7497c846962bac75483d0bc...
done. [Time: 2.874891 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug - GUID: 7a28e5ce42ad8ec40934fefd6c90ca76...
done. [Time: 3.420462 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/DSP - GUID: 809b2152efa19a34ba92dcd3a25c0a52...
done. [Time: 3.193237 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Mac - GUID: 8e25aa952c393a74aabbe0afb6568195...
done. [Time: 2.846959 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86 - GUID: a67677f87a810fd418177941ecf1b4f2...
done. [Time: 2.836241 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common - GUID: aa1e3dca9e2024c4ca1d664cd087e818...
done. [Time: 2.751526 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64 - GUID: c741f89de7847fa4fb9176df925c9bd2...
done. [Time: 2.737205 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac - GUID: de400e1bea8930d4f9ca50cc54278ffc...
done. [Time: 3.976070 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/arm64-v8a - GUID: e01d6d308d2d0470cba7879d7ea84eb4...
done. [Time: 3.540690 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Android - GUID: ecf2715289bd6435c974eefdac2c133b...
done. [Time: 4.260251 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Release - GUID: 07bd2d35df501db4eb7843ce9924e746...
done. [Time: 2.888746 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/armeabi-v7a/Release - GUID: 0bd5c472863bd4b629c1c0548e768225...
done. [Time: 3.446973 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/armeabi-v7a/Profile - GUID: 118748c023a1a4d31b9e80e55822a557...
done. [Time: 3.606983 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release - GUID: 2419e07c51770ba4c8c33318dfed8e2a...
done. [Time: 3.775240 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/armeabi-v7a/Debug - GUID: 30b513ac95f6449e498a59d6f2bd10ab...
done. [Time: 3.800195 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/x86/Profile - GUID: 3639eb86bc1c44944add0c155d2d10cc...
done. [Time: 4.058866 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle - GUID: 4061224a800e02447bbfaa5ee4385ddc...
done. [Time: 3.296908 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/arm64-v8a/Profile - GUID: 443092bad455e4b13b3e2be367b226cc...
done. [Time: 3.701778 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug - GUID: 5710777b1d9b1d14bba3dd02296843c9...
done. [Time: 2.975863 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects - GUID: 5b309877e823d4f4297bbee94397f038...
done. [Time: 2.500168 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle - GUID: 603be0a438ef2a243a505e65ec31f2be...
done. [Time: 3.318539 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile - GUID: 67af7ee50bca0224f90f9da54d4a293e...
done. [Time: 3.420914 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/DSP - GUID: 6c63c41e5823bb9408a5382e4c8cf2eb...
done. [Time: 4.100090 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Profile - GUID: 6ceeded5943cf8e43af7ecbfc2ff810a...
done. [Time: 3.382391 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/arm64-v8a/Debug - GUID: 767aef1b9583e478c929437ecee4e4a4...
done. [Time: 3.242873 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/x86/Release - GUID: 84894dda1ed174f3d8bc65fea29f022e...
done. [Time: 2.898891 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle - GUID: 8526a1f66dbd3714283d86e1b91e5622...
done. [Time: 2.736667 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/Arrays - GUID: 8f8548a8dad29e74d93a159c711accab...
done. [Time: 2.961491 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP - GUID: 992a18e07580205499df2cdeaf69549e...
done. [Time: 2.573829 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle - GUID: b5289ff0ce1d0a642a0dcfcfd7937394...
done. [Time: 2.705310 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle - GUID: bc91c8472af87fe4eb296cf5952e4ebb...
done. [Time: 4.011815 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/x86/DSP - GUID: c07cfa968f3584b30a920211ab0a4f72...
done. [Time: 3.738599 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/armeabi-v7a/DSP - GUID: cdc5f3e94a3654714ba64496c64eac5d...
done. [Time: 3.683058 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes - GUID: de6cd51a6a9f1144ab877869b579ce93...
done. [Time: 2.784738 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle - GUID: df5cd8b69295cf448aa5f911e5b97835...
done. [Time: 2.899544 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/arm64-v8a/DSP - GUID: e9e1596eb7f6d49f9b2023f472a138af...
done. [Time: 3.146327 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/x86/Debug - GUID: eac594a34b11e418dad7fdbe77c7baa5...
done. [Time: 4.045280 ms]
Updating Assets/Wwise/Deployment/Plugins/Android/arm64-v8a/Release - GUID: f1efa32ed726a4c14b76341defb2bd30...
done. [Time: 4.876135 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug - GUID: fcfedbde158afa54da80048abb786aa6...
done. [Time: 4.205211 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents - GUID: 176b46d3fdd774446ad53ff1301967a6...
done. [Time: 4.099769 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk - GUID: 547d4c2abc7e56f4f8e639cebf61efb5...
done. [Time: 41.057366 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.ilk - GUID: 8f0ce6ac2bc9da647af048fdfa203824...
done. [Time: 4.716061 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents - GUID: 99e7b3f7c50bfaf4d84a0ab49d054808...
done. [Time: 3.385426 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents - GUID: a129c2d99801f034d98cf8b391f21a44...
done. [Time: 2.669902 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents - GUID: a1e46e15a40c65d4faf718843dc2b18e...
done. [Time: 2.788709 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk - GUID: c3707225d77dcb0478ea6c124418e5ab...
done. [Time: 3.650986 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents - GUID: e0ca40786b40cdd4aafef24f0fa839bf...
done. [Time: 2.316800 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.ilk - GUID: e12c32b167d915543a75d2aa9bf74eeb...
done. [Time: 3.509639 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents - GUID: e903c3afda3fdc940b20faf9dda266cb...
done. [Time: 2.242296 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS - GUID: 0c9dbdd093fad8740acbec3de7300cd9...
done. [Time: 2.351080 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS - GUID: 1ca61f50d1b21154790a255a788c6a23...
done. [Time: 2.908215 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS - GUID: 54ef1b86ba411d745baeef1ec41aa07b...
done. [Time: 2.899568 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS - GUID: 690b4ab8bd715e045895883fdd63db1c...
done. [Time: 2.285667 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS - GUID: 7e008b4bf160e6649b0d5ee5959e7c1c...
done. [Time: 2.970668 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS - GUID: cf4e143b5e200954aa2431859ff83160...
done. [Time: 2.266404 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: 1296cdd41225cf5429db2fcd6af0b732...
done. [Time: 2.510891 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: 5c022f05deaff254daf77d5bba9d1f90...
done. [Time: 4.434298 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: 7418648d9f77dd743b66c8a899ee6b10...
done. [Time: 3.436507 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: 79138f06a87b7864d8562ae336d70af1...
done. [Time: 3.148351 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: ba5bf2f894c57ee4e89fefc848c2edda...
done. [Time: 2.698274 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: cd7d3388ea8fa2d4f879bee6ae6efd7f...
done. [Time: 3.110654 ms]