-
Notifications
You must be signed in to change notification settings - Fork 1
/
logRunSetup.txt
2856 lines (2610 loc) · 190 KB
/
logRunSetup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LICENSE SYSTEM [20181124 18:35:1] Next license update check is after 2018-10-11T19:04:03
DisplayProgressbar: Unity license
[Package Manager] Server::Start -- Port 50198 was selected
COMMAND LINE ARGUMENTS:
/Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/MacOS/Unity
-batchmode
-nographics
-logFile
logRunSetup.txt
-projectPath
/Users/isaacdore/Documents/GameDev/Jams/JamNATION+Unity_WwiseIntegrationTemp
-executeMethod
WwiseSetupWizard.RunSetup
-quit
Successfully changed project path to: /Users/isaacdore/Documents/GameDev/Jams/JamNATION+Unity_WwiseIntegrationTemp
/Users/isaacdore/Documents/GameDev/Jams/JamNATION+Unity_WwiseIntegrationTemp
Loading GUID <-> Path mappings...0.000352 seconds
Loading Asset Database...0.047782 seconds
Audio: FMOD Profiler initialized on port 54900
AssetDatabase consistency checks...0.049740 seconds
Refreshing native plugins compatible for Editor in 112.41 ms, found 20 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 40 packages:
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.ai)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.animation)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.assetbundle)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.audio)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.cloth)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.director)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.imageconversion)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.imgui)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.jsonserialize)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.particlesystem)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.physics)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.physics2d)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.screencapture)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.terrain)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.terrainphysics)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.tilemap)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.ui)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.uielements)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.umbra)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unityanalytics)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequest)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestassetbundle)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestaudio)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequesttexture)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.unitywebrequestwww)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.vehicles)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.video)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.vr)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.wind)
[Package Manager] * Package : [email protected]
(location: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.modules.xr)
[Package Manager] * Package : [email protected]
(location: /Users/isaacdore/Library/Unity/cache/packages/packages.unity.com/[email protected])
[Package Manager] Done registering packages in 0.01s seconds
Initialize engine version: 2018.2.17f1 (88933597c842)
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] = '/Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Managed'
Mono path[1] = '/Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Mono/lib/mono/2.0'
Mono config path = '/Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/Mono/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,defer=y,address=0.0.0.0:56675
Begin MonoManager ReloadAssembly
Initializing Unity.PackageManager (PackageManager) v2018.2.17 for Unity v2018.2.17f1
Registering precompiled unity dll's ...
Register platform support module: /Applications/Unity/Hub/Editor/2018.2.17f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Registered in 0.000970 seconds.
Registering precompiled user dll's ...
Registered in 0.192579 seconds.
Registering platform support modules:
Registered platform support modules in: 0.202001s.
Native extension for OSXStandalone target not found
Refreshing native plugins compatible for Editor in 1.60 ms, found 24 plugins.
Preloading 2 native plugins for Editor in 24.64 ms.
Mono: successfully reloaded assembly
- Completed reload, in 2.023 seconds
Platform modules already initialized, skipping
Begin MonoManager ReloadAssembly
Initializing Unity.PackageManager (PackageManager) v2018.2.17 for Unity v2018.2.17f1
Registering platform support modules:
Registered platform support modules in: 0.103381s.
Native extension for OSXStandalone target not found
Refreshing native plugins compatible for Editor in 3.54 ms, found 24 plugins.
Preloading 2 native plugins for Editor in 2.17 ms.
18:35:09.306 |V| UnitTesting.EntryPoint | <unnamed-thread>:1 | EntryPoint
Refreshing native plugins compatible for Editor in 1.45 ms, found 24 plugins.
Mono: successfully reloaded assembly
- Completed reload, in 2.196 seconds
Platform modules already initialized, skipping
Validating Project structure ... 0.015162 seconds.
Refresh: detecting if any assets need to be imported or removed ...
Refresh: elapses 0.331087 seconds
Refresh: trashing asset 2471458079897407d892e047000a7aac
Refresh: trashing asset 63721fc193d144270a3baf3d3ae511b9
Refresh: trashing asset db5d7eb81cb634d2fb82451aa61adcde
Refresh: trashing asset 46c352a93ad5449a4abf2af9c11967f3
Refresh: trashing asset 91291adc172c54b9c8fad23b74f9c841
Refresh: trashing asset 3d59c60dabafd47039e97987d32b9e43
Updating Assets/StreamingAssets/desc.txt - GUID: e9f61b0c5b9594b39976a6c20eac8a20...
----- Compute hash for Assets/StreamingAssets/desc.txt.
done. [Time: 453.987647 ms]
Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 321.2 MB.
System memory in use after: 259.4 MB.
Unloading 306 unused Assets to reduce memory usage. Loaded Objects now: 1789.
Total: 31.356408 ms (FindLiveObjects: 1.975049 ms CreateObjectMapping: 0.253521 ms MarkObjects: 6.051999 ms DeleteObjects: 23.074674 ms)
Updating Assets/Wwise/Tools/WwiseIDConverter.py - GUID: ca55959107b9b4a889319e9fcb8d66d7...
----- Compute hash for Assets/Wwise/Tools/WwiseIDConverter.py.
done. [Time: 203.608392 ms]
Updating Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_en.zip - GUID: 777ab60c9e0314388bc1870831622cdb...
----- Compute hash for Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_en.zip.
done. [Time: 399.359563 ms]
Updating Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm - GUID: 7c2e79082eb3a4c3ea093434bfc63a2b...
----- Compute hash for Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm.
done. [Time: 199.251038 ms]
Updating Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm - GUID: 875e4a11de5bd48a1a868b7ffba11742...
----- Compute hash for Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm.
done. [Time: 21.314585 ms]
Updating Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_ja.zip - GUID: ca69b4625ac83484a91268998f75f00b...
----- Compute hash for Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_ja.zip.
done. [Time: 29.091571 ms]
Updating Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_zh.zip - GUID: d766addf090e547f0bf9bdc9d3163220...
----- Compute hash for Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_zh.zip.
done. [Time: 21.106913 ms]
Updating Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm - GUID: de7edaacecd9d46bdb3c0e889558dfdd...
----- Compute hash for Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm.
done. [Time: 29.472888 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.pdb - GUID: 0d98890334be243268d9423a944058f9...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.pdb.
done. [Time: 341.605008 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.pdb - GUID: 2e1620234beb8460194603557836f465...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.pdb.
done. [Time: 71.376577 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk - GUID: 43dc515e3d89547ca8202c0cc9f9ec77...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk.
done. [Time: 285.185331 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk - GUID: 4ab31078853584806aaa23b77f9b45fd...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk.
done. [Time: 30.789903 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.pdb - GUID: 5da7b9c7fe59d49f5a66984577e029e9...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.pdb.
done. [Time: 68.674587 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkWaapiClient.pdb - GUID: 64d329071f45f497087292655f9f1910...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkWaapiClient.pdb.
done. [Time: 35.886956 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.pdb - GUID: 6e17822d2ba564bef8e1d11cce3c16c6...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.pdb.
done. [Time: 12.950526 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.pdb - GUID: 862dd89dc87f34cb4a7f38e2f006b05d...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.pdb.
done. [Time: 69.233633 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.pdb - GUID: a53513dd5005a44eeb9f7f364e4a56fe...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.pdb.
done. [Time: 14.817689 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.pdb - GUID: aec7034ff23aa41a584f44f17e44026e...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.pdb.
done. [Time: 73.559608 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.pdb - GUID: c23d54aa39c024203b981802a6818104...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.pdb.
done. [Time: 76.251176 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.idb - GUID: ce0b856118a0948caa2e70d6a51d659e...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.idb.
done. [Time: 306.187521 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkWaapiClient.pdb - GUID: d9ea7f750cb1d494f98f5abc7d86091a...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkWaapiClient.pdb.
done. [Time: 41.695230 ms]
Updating Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.idb - GUID: ec24a4bdc24fb4630bed7589397b6bdb...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.idb.
done. [Time: 13.834388 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/Info.plist - GUID: 010f38288628246278f2af390ba48a21...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/Info.plist.
done. [Time: 569.782265 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Info.plist - GUID: 7326293e1ba804cbe92e87f6f30efcff...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Info.plist.
done. [Time: 11.704844 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Info.plist - GUID: 79e4a8256d166420ea9eb2caf48b6692...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Info.plist.
done. [Time: 6.892441 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/Info.plist - GUID: ab9c68d01176b4b059ae623c13c08c6f...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/Info.plist.
done. [Time: 11.455161 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/Info.plist - GUID: cf0754e9d65354609ac571fe96ef6a95...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/Info.plist.
done. [Time: 12.049309 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Info.plist - GUID: dfa1048c9398d4b4e9e64ad3f52e4691...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Info.plist.
done. [Time: 6.819100 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: 0c2b9f21e23d147458236a407b2f12c5...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.
done. [Time: 10.991941 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: 11f18fbe10cd9477db72d26c828859a9...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.
done. [Time: 22.319469 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/readme.txt - GUID: 15c662b9c65a845f59632991c0f5241f...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/readme.txt.
done. [Time: 11.866553 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: 2421963995e254c25a61106e52f7fa4d...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.
done. [Time: 6.406910 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: 2fa46cb244475479e8b147be89e8e223...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.
done. [Time: 24.218591 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient - GUID: 54843dc6bed434297bcd9da0cefba5c3...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.
done. [Time: 8.092986 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine - GUID: 94aafd25eb39548628a6b52bd8c5d99d...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.
done. [Time: 42.155465 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/readme.txt - GUID: c78124451f87f42c7aa1cff6358cb2d9...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/readme.txt.
done. [Time: 6.719039 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/readme.txt - GUID: f2aa7f1b994974bbfb75d088129e3932...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/readme.txt.
done. [Time: 11.724750 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings - GUID: 0e95b7a2df4c548d09fd2488bc709956...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.
done. [Time: 285.898611 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings - GUID: 66bfe1d1c7caf42f4b3a5362ae492774...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.
done. [Time: 12.684769 ms]
Updating Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings - GUID: eae2745a963394a6781e6d27322a3311...
----- Compute hash for Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.
done. [Time: 16.851244 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerCollisionEnter.cs - GUID: 00e88c3356d4843ff84908030c39ad63...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerCollisionEnter.cs.
done. [Time: 171.208375 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkVertexArray.cs - GUID: 019458c28864c4ee9bfeb49d475c8c43...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkVertexArray.cs.
done. [Time: 27.399366 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkUnityPlatformSpecificSettings_Windows.cs - GUID: 038611d231beb4fd4816832e54072dd9...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkUnityPlatformSpecificSettings_Windows.cs.
done. [Time: 9.601335 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseRtpcReference.cs - GUID: 052c2e5b257a2464298f1051d0691486...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseRtpcReference.cs.
done. [Time: 15.990501 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMIDIPost.cs - GUID: 06050a8bc0ee648c7831ef4fa1ff3f32...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMIDIPost.cs.
done. [Time: 65.274749 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkBusHierarchyFlags.cs - GUID: 0621b0e3f05db4a0a91716e09c705f0a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkBusHierarchyFlags.cs.
done. [Time: 32.099666 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerMouseDown.cs - GUID: 06d7b537189194bebad730f68b763c8d...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerMouseDown.cs.
done. [Time: 12.292906 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseBankReference.cs - GUID: 06e73a1eb2aa842779e8f1540146fde6...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseBankReference.cs.
done. [Time: 6.690558 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkAmbientInspector.cs - GUID: 0820cc275c0cd4736931d4606175a7ee...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkAmbientInspector.cs.
done. [Time: 29.923542 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkWwiseSetupWizard.cs - GUID: 0878806cb42cb4201b5bdb7722117530...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkWwiseSetupWizard.cs.
done. [Time: 24.847104 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMusicPlaylistCallbackInfo.cs - GUID: 09f1bed28bdd44a8292a05aa15e44a41...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMusicPlaylistCallbackInfo.cs.
done. [Time: 7.876874 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Common/AkWwiseIdConverter.cs - GUID: 0a32a28f100694c659b9dcbac4e027ae...
----- Compute hash for Assets/Wwise/Editor/WwiseMenu/Common/AkWwiseIdConverter.cs.
done. [Time: 14.668002 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEventTypes.cs - GUID: 0a682b1cbdfc84ac299ba3df87c86bf1...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEventTypes.cs.
done. [Time: 8.892200 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMIDICcTypes.cs - GUID: 0ac9228f54dfb48dd9a72d1344b28cee...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMIDICcTypes.cs.
done. [Time: 9.208363 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkRTPCPlayableInspector.cs - GUID: 0cbfa658fe4ef47e59f0c69c7d6ce3a3...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkRTPCPlayableInspector.cs.
done. [Time: 11.544879 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDiffractionFlags.cs - GUID: 0dca32265afb6489dac61611a47fcc4c...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDiffractionFlags.cs.
done. [Time: 6.621924 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAudioDeviceState.cs - GUID: 0e411307eb89841c99b5f00c20f5d67c...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAudioDeviceState.cs.
done. [Time: 11.531710 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseEvent.cs - GUID: 0f3c43ce3185644a49c3540a59e94545...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseEvent.cs.
done. [Time: 17.202964 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkStreamMgrSettings.cs - GUID: 0f4639878b5074c0bacc236f06ae5117...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkStreamMgrSettings.cs.
done. [Time: 6.891680 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolSpatialAudio.cs - GUID: 0f4eeaa55ab7c4a9b9432106b776b31c...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolSpatialAudio.cs.
done. [Time: 10.865451 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMemSettings.cs - GUID: 104211c61e9304e5aac3fbd6e0ac7c01...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMemSettings.cs.
done. [Time: 10.712782 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkInitSettings.cs - GUID: 107a64dc95ffd44a69c7cc6b2de26507...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkInitSettings.cs.
done. [Time: 8.934810 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/WAAPI/AkWaapiClient.cs - GUID: 107fe51749d694e2cb776b512b2fa7d4...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/WAAPI/AkWaapiClient.cs.
done. [Time: 13.774873 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkChannelConfigType.cs - GUID: 10b3f2e3d7f3b493cb9454f143521fc1...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkChannelConfigType.cs.
done. [Time: 9.571545 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkRoomPortalInspector.cs - GUID: 12a079ed914f8481c9ed971aa911f894...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkRoomPortalInspector.cs.
done. [Time: 10.028094 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseStateGroupReference.cs - GUID: 133bd078030584aaaa5b3e5bd073cde1...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseStateGroupReference.cs.
done. [Time: 11.544001 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerExit.cs - GUID: 14587c083f60740848eb467481cc2cb1...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerExit.cs.
done. [Time: 7.797221 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDurationCallbackInfo.cs - GUID: 14e72b1ad81bc4fe59e141276953791b...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDurationCallbackInfo.cs.
done. [Time: 11.624304 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkEventCallbackDataDrawer.cs - GUID: 14f25fc86dedd4599a567aacf6172fb1...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkEventCallbackDataDrawer.cs.
done. [Time: 17.509499 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkPlatformInitSettings_Mac.cs - GUID: 15ad89b1f08bd467688344aa7344416e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkPlatformInitSettings_Mac.cs.
done. [Time: 13.746171 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkBasePathGetter.cs - GUID: 16d726c7b89f046e497e498d100f2006...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkBasePathGetter.cs.
done. [Time: 14.170265 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkImageSourceSettings.cs - GUID: 19f70c0cafece4e428ab944cc2e3921c...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkImageSourceSettings.cs.
done. [Time: 7.596707 ms]
Updating Assets/Wwise/Deployment/Components/AkEnvironmentPortal.cs - GUID: 1be5aa812db794b45a6763217ce794d1...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEnvironmentPortal.cs.
done. [Time: 12.744614 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseTriggerReference.cs - GUID: 2141bdffd46ec4e0698578b49cc1c141...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseTriggerReference.cs.
done. [Time: 11.309054 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolDefault.cs - GUID: 227ebabbb70d04193b02fff5203fa7cc...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolDefault.cs.
done. [Time: 6.622061 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAcousticSurface.cs - GUID: 2293b9bab1a8844f48739fce1b2dd39b...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAcousticSurface.cs.
done. [Time: 12.108653 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObjPositionOffsetData.cs - GUID: 2316948816daa427688cc14ce1cdac31...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObjPositionOffsetData.cs.
done. [Time: 6.046824 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkThreadProperties_Mac.cs - GUID: 24281af99d0204cd1be662f5b4ffdd85...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkThreadProperties_Mac.cs.
done. [Time: 11.991009 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkAuxSendArray.cs - GUID: 242ea6207a73b43a199cd10a619ddc34...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkAuxSendArray.cs.
done. [Time: 17.000993 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs - GUID: 27043067e8d2e46c89a0d7833bff8e63...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs.
done. [Time: 16.009812 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObjPosOffsetData.cs - GUID: 276d888885cd44457a631ad9ac11729a...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObjPosOffsetData.cs.
done. [Time: 6.548000 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseSwitchGroupReference.cs - GUID: 287e26d8e39d242e68cc2a508c277e0f...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseSwitchGroupReference.cs.
done. [Time: 11.045056 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkActionOnEventType.cs - GUID: 29572ddbad01a40a7b22562134c3f73f...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkActionOnEventType.cs.
done. [Time: 8.208640 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDeviceSettings.cs - GUID: 29acf421781f6432f9345e8003057848...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDeviceSettings.cs.
done. [Time: 11.097250 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkGameObjectInspector.cs - GUID: 2a64a3b1ab75348c08b766c29ed3d62c...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkGameObjectInspector.cs.
done. [Time: 12.530792 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBank.cs - GUID: 2a978bab7ffec4444a76db6efb7abd90...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBank.cs.
done. [Time: 7.175649 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkBaseInspector.cs - GUID: 2b60b41410e86465fac50ba0ec0fd64c...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkBaseInspector.cs.
done. [Time: 12.175512 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkCallbackType.cs - GUID: 2bf6f2fc1f37447649ea9482dc4d71cc...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkCallbackType.cs.
done. [Time: 12.258011 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkChannelOrdering.cs - GUID: 2da42e02aad8d4165a73c42554b7857f...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkChannelOrdering.cs.
done. [Time: 12.709819 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSourceSettings.cs - GUID: 2ee0df092c875483787eb8a7df4afcd0...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSourceSettings.cs.
done. [Time: 7.926710 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkSoundEngine_Mac.cs - GUID: 2f872a77f15d149c9928ee6b94860adb...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkSoundEngine_Mac.cs.
done. [Time: 90.131452 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAudioInterruptionCallbackInfo.cs - GUID: 3349afc16fe6a4187beaba233c03c531...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAudioInterruptionCallbackInfo.cs.
done. [Time: 9.133674 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseObjectReference.cs - GUID: 34151e831c94d4b538cf59cea32e4cda...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseObjectReference.cs.
done. [Time: 15.635817 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkMemPoolAttributes_Mac.cs - GUID: 3446884379d1348c0b43d000d1c06c72...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkMemPoolAttributes_Mac.cs.
done. [Time: 14.395509 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPluginType.cs - GUID: 352db47c5841c4471b8993b2fb84af19...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPluginType.cs.
done. [Time: 5.862284 ms]
Updating Assets/Wwise/Deployment/Components/AkSpatialAudioBase.cs - GUID: 3706a163da0f544e08d83fe6f41e6881...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSpatialAudioBase.cs.
done. [Time: 12.254125 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPositioningInfo.cs - GUID: 38bdf8b46654e441c9346979183961e2...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPositioningInfo.cs.
done. [Time: 13.322822 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkCommunicationSettings_Mac.cs - GUID: 3a900cb1abde542708d459a6b9484589...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkCommunicationSettings_Mac.cs.
done. [Time: 7.566531 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkChannelEmitterArray.cs - GUID: 3d2c2e3b51a104cf28d04d0c1d20aedb...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkChannelEmitterArray.cs.
done. [Time: 12.886916 ms]
Updating Assets/Wwise/Deployment/Components/AkEnvironment.cs - GUID: 3d386ea27c0684f4f81fe14ddcc008c8...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEnvironment.cs.
done. [Time: 13.659427 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPathParams.cs - GUID: 3f9341c84ab864210851c9a9da8c454a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPathParams.cs.
done. [Time: 7.583548 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseSwitch.cs - GUID: 40b2e81a8274a4c2c8248bc043c7fa7c...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseSwitch.cs.
done. [Time: 11.275344 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMusicSyncCallbackInfo.cs - GUID: 40d35e60b951846e8a137d28f12307b0...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMusicSyncCallbackInfo.cs.
done. [Time: 12.058673 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerEnter.cs - GUID: 4124d167cbfbd4b8383e4e8e3e3800dd...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerEnter.cs.
done. [Time: 9.856535 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkSoundEngine.cs - GUID: 41a49defa14b547aca572aa55c47db6a...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkSoundEngine.cs.
done. [Time: 12.816280 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkInitializationSettings.cs - GUID: 43851a1bd4a03474e85222f3457271df...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkInitializationSettings.cs.
done. [Time: 13.239163 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBaseType.cs - GUID: 439ab9b53180d41cb8bfed47bd677375...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBaseType.cs.
done. [Time: 7.413476 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSpeakerPanningType.cs - GUID: 44ef988827d5b4257a0ab2b43f749851...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSpeakerPanningType.cs.
done. [Time: 11.819805 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkWwiseInitializationSettings.cs - GUID: 459141e1e28e44d07bcd1368db8b6973...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkWwiseInitializationSettings.cs.
done. [Time: 40.322563 ms]
Updating Assets/Wwise/Deployment/Components/AkEvent.cs - GUID: 46dd563552dd8477391eb9a8cc3a3aa5...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEvent.cs.
done. [Time: 10.913442 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMeteringFlags.cs - GUID: 46e9e505ce1e0498eb9e467b56b06e95...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMeteringFlags.cs.
done. [Time: 11.242653 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerEnable.cs - GUID: 4919202dd01754f23947e07df54504c2...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerEnable.cs.
done. [Time: 6.579174 ms]
Updating Assets/Wwise/Extensions/AkSoundEngine.extensions.cs - GUID: 49e8ec170555d4f91854e889ef8f9e80...
----- Compute hash for Assets/Wwise/Extensions/AkSoundEngine.extensions.cs.
done. [Time: 11.770618 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkMemPoolAttributes_Windows.cs - GUID: 4cc7634785514494a98faf9c5b73a639...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkMemPoolAttributes_Windows.cs.
done. [Time: 6.782351 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkBaseArray.cs - GUID: 4d53c344799e54669a3ca6c542208894...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkBaseArray.cs.
done. [Time: 11.152403 ms]
Updating Assets/Wwise/Deployment/Components/AkEventCallbackData.cs - GUID: 4e8a3bb3fbb75424e9d3d97aabf380bb...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEventCallbackData.cs.
done. [Time: 8.164554 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMarkerCallbackInfo.cs - GUID: 4ed1a002dad9a4666886307691e8f64d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMarkerCallbackInfo.cs.
done. [Time: 9.919099 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkVector.cs - GUID: 4f28e1bf5587949e4b14bba20feaf703...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkVector.cs.
done. [Time: 10.958601 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerCollisionExit.cs - GUID: 4f2f7fd14123443bb803cc444f3912d0...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerCollisionExit.cs.
done. [Time: 8.292135 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObjListenerList.cs - GUID: 4f5d9158026164ce19d9a5977b43f4ea...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObjListenerList.cs.
done. [Time: 12.202122 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkBankManager.cs - GUID: 4fd54d93e94bc4402b06fc07ddca9b9e...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkBankManager.cs.
done. [Time: 10.418891 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerBase.cs - GUID: 50eb23afecd5d41a68e600f71e449ffe...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerBase.cs.
done. [Time: 8.724359 ms]
Updating Assets/Wwise/Editor/WwiseTypes/AcousticTextureDrawer.cs - GUID: 5108629286d694455943d35cc1635472...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/AcousticTextureDrawer.cs.
done. [Time: 11.431255 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkSwitchInspector.cs - GUID: 513422a1c15fc47cab50484ea8133370...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkSwitchInspector.cs.
done. [Time: 7.109676 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs - GUID: 51cd9bf80cacb485ebc587b449342679...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkPluginActivator.cs.
done. [Time: 24.506992 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkTransform.cs - GUID: 51d1649f256c74e609279c55f9676aac...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkTransform.cs.
done. [Time: 8.160143 ms]
Updating Assets/Wwise/Deployment/Components/AkSpatialAudioEmitter.cs - GUID: 531e6d6dcc3db4e298726d39eb7d03d8...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSpatialAudioEmitter.cs.
done. [Time: 15.773381 ms]
Updating Assets/Wwise/Deployment/Components/AkEmitterObstructionOcclusion.cs - GUID: 54931f93d2df346ea9cec65a9fd13131...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEmitterObstructionOcclusion.cs.
done. [Time: 12.139905 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkTaskContext.cs - GUID: 561a3334296d64c6c9a395926a7abc6d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkTaskContext.cs.
done. [Time: 7.942737 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerMouseEnter.cs - GUID: 56ad3c8e4fc1946dd8c7448a3f2f982b...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerMouseEnter.cs.
done. [Time: 10.828145 ms]
Updating Assets/Wwise/Deployment/Components/AkUnityEventHandler.cs - GUID: 5787dda249dad4de3b2e279420ac01ce...
----- Compute hash for Assets/Wwise/Deployment/Components/AkUnityEventHandler.cs.
done. [Time: 13.640331 ms]
Updating Assets/Wwise/Editor/WwiseTypes/TriggerDrawer.cs - GUID: 57da62126580a4c9e8a0f1a24303924f...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/TriggerDrawer.cs.
done. [Time: 6.704843 ms]
Updating Assets/Wwise/Deployment/Components/AkSwitch.cs - GUID: 58a722f1651dd42baa3962a97ca2d48b...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSwitch.cs.
done. [Time: 11.349995 ms]
Updating Assets/Wwise/Deployment/Components/AkSpatialAudioListener.cs - GUID: 58bc65ff3690745aab4a1e9044742e34...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSpatialAudioListener.cs.
done. [Time: 12.185466 ms]
Updating Assets/Wwise/Deployment/Components/AkState.cs - GUID: 591d97879e9984c3a90e0c9b0c5d2ce8...
----- Compute hash for Assets/Wwise/Deployment/Components/AkState.cs.
done. [Time: 7.315315 ms]
Updating Assets/Wwise/Editor/WwiseTypes/BankDrawer.cs - GUID: 592dc405a2d4c4996a4ae31faf6cf3a7...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/BankDrawer.cs.
done. [Time: 10.938170 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/WAAPI/AkWaapiClient_PINVOKE.cs - GUID: 593a860de0ae04cf48194fa8d3e16f94...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/WAAPI/AkWaapiClient_PINVOKE.cs.
done. [Time: 7.562694 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkReflectionPathInfo.cs - GUID: 596c8808d9b804de7b774edf03f4a930...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkReflectionPathInfo.cs.
done. [Time: 15.243245 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkCommonPlatformSettings.cs - GUID: 597bcdc315ce243c2873a8bdc127306e...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkCommonPlatformSettings.cs.
done. [Time: 17.765507 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkTriangle.cs - GUID: 5d17873bc2a374655981a9176ebe64c2...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkTriangle.cs.
done. [Time: 12.210246 ms]
Updating Assets/Wwise/Deployment/Components/AkRTPCPlayable.cs - GUID: 5e2736a2a383f478caac7e5721608264...
----- Compute hash for Assets/Wwise/Deployment/Components/AkRTPCPlayable.cs.
done. [Time: 13.258909 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkMIDIPostArray.cs - GUID: 5fdc7d92b14594ff39e5c3f16ee4586a...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkMIDIPostArray.cs.
done. [Time: 7.324976 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkDiffractionPathInfoArray.cs - GUID: 609e5bdf070b1475981055737294fb82...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkDiffractionPathInfoArray.cs.
done. [Time: 12.100734 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObj.cs - GUID: 612678a57297a4c4293d4c4a6822b851...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObj.cs.
done. [Time: 15.590113 ms]
Updating Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewControl.cs - GUID: 62cc29e4754594e679a3b00537213b9b...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewControl.cs.
done. [Time: 19.376234 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkWwiseSettingsWindow.cs - GUID: 678d38a654e124293b092777d8f84c35...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkWwiseSettingsWindow.cs.
done. [Time: 16.026396 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDiffractionPathInfo.cs - GUID: 67fa366d4e7fd48a19589ccd60da762f...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDiffractionPathInfo.cs.
done. [Time: 12.392336 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseRtpc.cs - GUID: 6853b556b85b84183aa7ec2f47c0b418...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseRtpc.cs.
done. [Time: 7.704200 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkWwisePostImportCallbackSetup.cs - GUID: 69db03a8fdef446f5875338ab6f2f03e...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkWwisePostImportCallbackSetup.cs.
done. [Time: 14.170891 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDynamicSequenceItemCallbackInfo.cs - GUID: 69efd549e253840948cc16df1210577a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDynamicSequenceItemCallbackInfo.cs.
done. [Time: 11.312925 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkBankCallbackInfo.cs - GUID: 6a647a8530c9a4dd38f339ca6250de6c...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkBankCallbackInfo.cs.
done. [Time: 7.164903 ms]
Updating Assets/Wwise/Deployment/Components/AkObstructionOcclusion.cs - GUID: 6aac1f73e673541db811751d9caf7ced...
----- Compute hash for Assets/Wwise/Deployment/Components/AkObstructionOcclusion.cs.
done. [Time: 12.391470 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolLEngineDefault.cs - GUID: 6b11e5cf5bdc2482bbd2dfc967c2a37a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/_ArrayPoolLEngineDefault.cs.
done. [Time: 9.337230 ms]
Updating Assets/Wwise/Deployment/Components/AkInitializer.cs - GUID: 6b131b5ea7ec94c3598cfc6559ef5ce5...
----- Compute hash for Assets/Wwise/Deployment/Components/AkInitializer.cs.
done. [Time: 18.704432 ms]
Updating Assets/Wwise/Editor/WwiseTypes/CallbackFlagsDrawer.cs - GUID: 6c1be940cd3cb40769a970d71a1ad817...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/CallbackFlagsDrawer.cs.
done. [Time: 8.769660 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkVertex.cs - GUID: 6ef644f65a64d40f288b1b9f40e79717...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkVertex.cs.
done. [Time: 11.789180 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseTrigger.cs - GUID: 6f386d36ce670472b9471c1a86f7e119...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseTrigger.cs.
done. [Time: 6.301432 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerDisable.cs - GUID: 7082ea656834949d79a91825b17b5dc3...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerDisable.cs.
done. [Time: 12.126967 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkCurveInterpolation.cs - GUID: 7177234c00f48479294687b4e7c9e29d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkCurveInterpolation.cs.
done. [Time: 8.679458 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkGlobalCallbackLocation.cs - GUID: 71826b507176e40eb9403b39aca15226...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkGlobalCallbackLocation.cs.
done. [Time: 10.111361 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkEventPlayableInspector.cs - GUID: 744521068b1d04268a0b4a88f126e3c3...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkEventPlayableInspector.cs.
done. [Time: 11.533290 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkEnvironmentInspector.cs - GUID: 74c88002b427944a7a4039681fbdc7ee...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkEnvironmentInspector.cs.
done. [Time: 7.153894 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkGroupType.cs - GUID: 74f44dd1ce8044f609f0317d8af606ed...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkGroupType.cs.
done. [Time: 11.031206 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkLogger.cs - GUID: 7518c27cc6b074b34b0334dc3ddf26a7...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkLogger.cs.
done. [Time: 8.933582 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkDynamicSequenceType.cs - GUID: 75e3baa72b36d47d987e3d85a7379a53...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkDynamicSequenceType.cs.
done. [Time: 9.616919 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkExternalSourceInfo.cs - GUID: 76ac2405f430547f9853a54c9e9016c8...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkExternalSourceInfo.cs.
done. [Time: 12.554369 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPanningRule.cs - GUID: 77110dd9859ad49cdbec5e68f65ee2bc...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPanningRule.cs.
done. [Time: 7.541372 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkBankContent.cs - GUID: 772bda92e20d641bdb82c22bad116ad4...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkBankContent.cs.
done. [Time: 11.544576 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSerializedCallbackHeader.cs - GUID: 7788e6fdf9d8646fc94110fa5d344a55...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSerializedCallbackHeader.cs.
done. [Time: 10.952609 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Windows/AkWwiseMenu_Windows.cs - GUID: 793a60cb973d44c84ac4e354060b0e7e...
----- Compute hash for Assets/Wwise/Editor/WwiseMenu/Windows/AkWwiseMenu_Windows.cs.
done. [Time: 7.393155 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkCommunicationSettings_Windows.cs - GUID: 7a4a59e9cd25f4ad3aec2821c82fc322...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkCommunicationSettings_Windows.cs.
done. [Time: 11.827361 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseAcousticTextureReference.cs - GUID: 7b504147148694e70a24ab7502cfb7d4...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseAcousticTextureReference.cs.
done. [Time: 8.591078 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkCallbackInfo.cs - GUID: 7c127ae6e45f346caad2bff33a2258b7...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkCallbackInfo.cs.
done. [Time: 13.656928 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkImageSourceParams.cs - GUID: 7c2db2d4c59194a57b74f86adf2b1a6d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkImageSourceParams.cs.
done. [Time: 12.421689 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkTriangleArray.cs - GUID: 7ff5b75e71a4b47579935a716ea17ecb...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkTriangleArray.cs.
done. [Time: 6.446781 ms]
Updating Assets/Wwise/Deployment/Components/AkSoundEngineController.cs - GUID: 802cd73a53f4f4c62a14d8f7f3590e9b...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSoundEngineController.cs.
done. [Time: 13.048685 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwisePicker.cs - GUID: 804cf49a2fd60440cb7e23b7c085dada...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwisePicker.cs.
done. [Time: 12.394313 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwiseProjectInfo.cs - GUID: 81c19f2ddc2074847a3d50bc7be2cc8a...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwiseProjectInfo.cs.
done. [Time: 7.446066 ms]
Updating Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewItem.cs - GUID: 828d07e1b4e704258badc567dc6f33dc...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewItem.cs.
done. [Time: 14.281480 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseState.cs - GUID: 842f65f5496f64cc5a5e640d1efb7248...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseState.cs.
done. [Time: 11.050826 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkCallbackSerializer.cs - GUID: 84bec8a9ddb594715bbbde356434b5f6...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkCallbackSerializer.cs.
done. [Time: 8.030217 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSegmentInfo.cs - GUID: 871efcb26ca8c4fc5b63c5622a73df68...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSegmentInfo.cs.
done. [Time: 12.333379 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkRoomParams.cs - GUID: 87e8e062032e94d0587dcd284685631b...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkRoomParams.cs.
done. [Time: 12.150786 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkUnityEventHandlerInspector.cs - GUID: 89defd831a6aa4680b96aeaaa7923b60...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkUnityEventHandlerInspector.cs.
done. [Time: 12.238917 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMultiPositionType.cs - GUID: 8ac9fd5f246ba4dc29c1aaf5ccc9b1f3...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMultiPositionType.cs.
done. [Time: 10.546601 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/Ak3DSpatializationMode.cs - GUID: 8bcfc82481f6a4a348729af6adebfb87...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/Ak3DSpatializationMode.cs.
done. [Time: 11.586675 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMonitorErrorLevel.cs - GUID: 8c1882f67459d4612bac8daee5012f9e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMonitorErrorLevel.cs.
done. [Time: 6.291605 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAudioSettings.cs - GUID: 8cb55ef0a198f4284840417cf055287e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAudioSettings.cs.
done. [Time: 12.609525 ms]
Updating Assets/Wwise/Editor/WwiseTypes/StateDrawer.cs - GUID: 8d4bb3392007d41b9897e73a97808b5f...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/StateDrawer.cs.
done. [Time: 5.887093 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkEnvironmentPortalInspector.cs - GUID: 8d980973131a3407b9f2342ba94eb92d...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkEnvironmentPortalInspector.cs.
done. [Time: 12.369023 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseSwitchReference.cs - GUID: 8dd4d29820b214518a1ed13415d1079c...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseSwitchReference.cs.
done. [Time: 10.503929 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkReflectionPathInfoArray.cs - GUID: 8e1ebb4667d824d3abd78c04cf043dbb...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkReflectionPathInfoArray.cs.
done. [Time: 7.010617 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkSoundEnginePINVOKE_Mac.cs - GUID: 8e81b1edb7a3340babd7034715a04f29...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkSoundEnginePINVOKE_Mac.cs.
done. [Time: 138.665521 ms]
Updating Assets/Wwise/Deployment/Components/AkAmbient.cs - GUID: 8edb6308a0f6f40ffb511fd93698817f...
----- Compute hash for Assets/Wwise/Deployment/Components/AkAmbient.cs.
done. [Time: 12.545915 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkOutputSettings.cs - GUID: 8fe897d8005654897ab3e16e8b7044cb...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkOutputSettings.cs.
done. [Time: 12.446525 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkObstructionOcclusionValues.cs - GUID: 90ee3fc153d1a40ba99ade5abe505019...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkObstructionOcclusionValues.cs.
done. [Time: 6.582580 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseObjectType.cs - GUID: 91ef11a6bd08e415b8aae4a34fa28d9b...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseObjectType.cs.
done. [Time: 11.309537 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkPositionArray.cs - GUID: 92f189fec8d594947be96a07d0659102...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkPositionArray.cs.
done. [Time: 12.816788 ms]
Updating Assets/Wwise/Editor/WwiseTypes/SwitchDrawer.cs - GUID: 94ca5df9c4e724a0d9bced612ae0711f...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/SwitchDrawer.cs.
done. [Time: 9.654642 ms]
Updating Assets/Wwise/Deployment/Components/AkRoomPortalObstruction.cs - GUID: 9764bde4449c5463f9415b180ecb07b4...
----- Compute hash for Assets/Wwise/Deployment/Components/AkRoomPortalObstruction.cs.
done. [Time: 10.888713 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Common/AkUnityPluginInstallerBase.cs - GUID: 979ab61acecf44df6bf3dc9f1439cbea...
----- Compute hash for Assets/Wwise/Editor/WwiseMenu/Common/AkUnityPluginInstallerBase.cs.
done. [Time: 13.314294 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAuxSendValue.cs - GUID: 9818d0bce380d4d7397fe7e9b9830af3...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAuxSendValue.cs.
done. [Time: 7.330885 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkAudioAPI_Windows.cs - GUID: 98aedc32676e8490bbed905f355a638d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkAudioAPI_Windows.cs.
done. [Time: 10.799610 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkCallbackManager.cs - GUID: 98cf28e7743aa46a0b2e208ab420758e...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkCallbackManager.cs.
done. [Time: 16.610534 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkSceneUtils.cs - GUID: 99bdf2126d73f4a5bade0f06ca13faeb...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkSceneUtils.cs.
done. [Time: 6.831876 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkWSAUtils.cs - GUID: 9b71b802b6dcc43a7b82f40fac268683...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkWSAUtils.cs.
done. [Time: 10.713030 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkSoundEnginePINVOKE_Windows.cs - GUID: 9cd408236c72a4b04a69fac3234183c5...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkSoundEnginePINVOKE_Windows.cs.
done. [Time: 50.505553 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkSoundEngine_Windows.cs - GUID: 9cd4f69b4d1aa4855bfc1e2e6a6974ef...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkSoundEngine_Windows.cs.
done. [Time: 29.018762 ms]
Updating Assets/Wwise/Deployment/Components/AkTerminator.cs - GUID: 9f6fcf6b1a941417aa2b9e60d77a7d2f...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTerminator.cs.
done. [Time: 6.721141 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObjEnvironmentData.cs - GUID: a0197ae3bbc5b4670815eea9e2227113...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObjEnvironmentData.cs.
done. [Time: 13.306612 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAudioFormat.cs - GUID: a12e4228d03544a2e9a8653dcc4d9d2f...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAudioFormat.cs.
done. [Time: 12.855802 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkAcousticSurfaceArray.cs - GUID: a3b00c86f5cad4318bedd379ab50a4f4...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkAcousticSurfaceArray.cs.
done. [Time: 7.123523 ms]
Updating Assets/Wwise/Deployment/Components/AkRTPCTrack.cs - GUID: a41b39be982c249d6a94aced44e8f51c...
----- Compute hash for Assets/Wwise/Deployment/Components/AkRTPCTrack.cs.
done. [Time: 12.343097 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkBankInspector.cs - GUID: a4c9e04e2f27f49828bb9fa8145d01ff...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkBankInspector.cs.
done. [Time: 8.390014 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkQueryRTPCValue.cs - GUID: a62e2946ed87d4c11b186432735f271e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkQueryRTPCValue.cs.
done. [Time: 10.029586 ms]
Updating Assets/Wwise/Deployment/Components/AkRoomPortal.cs - GUID: a78c6a82ab6ec4e53861cb21f1f999c4...
----- Compute hash for Assets/Wwise/Deployment/Components/AkRoomPortal.cs.
done. [Time: 14.633293 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkConnectionType.cs - GUID: a7963b1329d594b169d8d43df814469a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkConnectionType.cs.
done. [Time: 5.851668 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwiseXMLBuilder.cs - GUID: a9941fed080a84e07ba631ef7aa46e89...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwiseXMLBuilder.cs.
done. [Time: 15.383240 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPreparationType.cs - GUID: aa18956e1b6e64a8783bec27c8b7be68...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPreparationType.cs.
done. [Time: 11.670977 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseStateReference.cs - GUID: aa8e0aac04a4f4615a0547687b338bd1...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseStateReference.cs.
done. [Time: 6.811021 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseEventReference.cs - GUID: aa954cf17c6524afcb9536f674ce2b0c...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseEventReference.cs.
done. [Time: 11.655736 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEvent.cs - GUID: abe38d973dcce46b0ba17a727f7015b4...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEvent.cs.
done. [Time: 17.486561 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkChannelConfig.cs - GUID: ad2852754b1554d6c90899508fdb3bbb...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkChannelConfig.cs.
done. [Time: 12.598362 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMusicSettings.cs - GUID: adb01a427ba764473b9ce6026f7da69b...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMusicSettings.cs.
done. [Time: 7.226829 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkEmitterSettings.cs - GUID: b0818f4288cad4622a6b40ad0be2f61e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkEmitterSettings.cs.
done. [Time: 12.783700 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwiseTreeView.cs - GUID: b23be011cfb3a464ebcd5ca2aaac989e...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwiseTreeView.cs.
done. [Time: 24.143947 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerMouseUp.cs - GUID: b306c6ee1a8154068aeedc5f3d7759c2...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerMouseUp.cs.
done. [Time: 9.597386 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPlaylist.cs - GUID: b32b541e4962e40f99280d9639a5b514...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPlaylist.cs.
done. [Time: 11.786646 ms]
Updating Assets/Wwise/Deployment/Components/AkDragDropHelper.cs - GUID: b37d232f1aa914e4eabca13754aa27dd...
----- Compute hash for Assets/Wwise/Deployment/Components/AkDragDropHelper.cs.
done. [Time: 9.335489 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AKRESULT.cs - GUID: b4acbde1dba7c4fe4886816e616a1c98...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AKRESULT.cs.
done. [Time: 11.356367 ms]
Updating Assets/Wwise/Editor/WwiseTypes/RTPCDrawer.cs - GUID: b4d22867bada340ff8090125379c41a6...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/RTPCDrawer.cs.
done. [Time: 7.343379 ms]
Updating Assets/Wwise/Editor/WwiseTypes/EventDrawer.cs - GUID: b5c1ce73393364ea1b96fe0ba29d0868...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/EventDrawer.cs.
done. [Time: 9.336747 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Windows/AkWindowsSettings.cs - GUID: b657a1ad126304b4e9a20389c751661d...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Windows/AkWindowsSettings.cs.
done. [Time: 11.219519 ms]
Updating Assets/Wwise/Deployment/Components/AkEventTrack.cs - GUID: b6585a13aa0424b989c2c9b1cb27b806...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEventTrack.cs.
done. [Time: 8.878288 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs - GUID: b6585e95ecdc04c04880a3e5106740e6...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs.
done. [Time: 12.958421 ms]
Updating Assets/Wwise/Deployment/Components/AkMemBankLoader.cs - GUID: b68cefcdec61b48caa8e1c8258b2150c...
----- Compute hash for Assets/Wwise/Deployment/Components/AkMemBankLoader.cs.
done. [Time: 12.389189 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSourceChannelOrdering.cs - GUID: b9400f529c2c74a24b8585e0e4a90ce1...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSourceChannelOrdering.cs.
done. [Time: 7.662610 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseAcousticTexture.cs - GUID: ba0eaeea2007044a483a5cca937c3e81...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseAcousticTexture.cs.
done. [Time: 11.353747 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkStateInspector.cs - GUID: bb2a69dfbbef646e099e487e05d041a7...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkStateInspector.cs.
done. [Time: 5.852892 ms]
Updating Assets/Wwise/Deployment/Components/AkBank.cs - GUID: bbf7736068e1444a5bc660f3d2d0a53e...
----- Compute hash for Assets/Wwise/Deployment/Components/AkBank.cs.
done. [Time: 11.502472 ms]
Updating Assets/Wwise/Editor/WwiseMenu/Mac/AkWwiseMenu_Mac.cs - GUID: bf0e7d4a92a984ed28d318914f3c5b9e...
----- Compute hash for Assets/Wwise/Editor/WwiseMenu/Mac/AkWwiseMenu_Mac.cs.
done. [Time: 6.603529 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseCallbackFlags.cs - GUID: c04cf18ff10f34d5ba68b54c75315344...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseCallbackFlags.cs.
done. [Time: 12.214669 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkEventCallbackInfo.cs - GUID: c38a051880bff4e9ca993e60dc218b3d...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkEventCallbackInfo.cs.
done. [Time: 11.939948 ms]
Updating Assets/Wwise/Deployment/Components/AkRoom.cs - GUID: c54a0077650e24c11ac70a64550877ec...
----- Compute hash for Assets/Wwise/Deployment/Components/AkRoom.cs.
done. [Time: 15.894627 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPlaylistArray.cs - GUID: c721d1ce4a27f4126a80a879100e1259...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPlaylistArray.cs.
done. [Time: 9.774235 ms]
Updating Assets/Wwise/Deployment/API/Generated/Windows/AkThreadProperties_Windows.cs - GUID: c8a576f9c81e34b58bf52e9aa4183048...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Windows/AkThreadProperties_Windows.cs.
done. [Time: 10.769933 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkGameObjListenerListDrawer.cs - GUID: c99b5e1564dbb4e12bf9c7fa062a0ca3...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkGameObjListenerListDrawer.cs.
done. [Time: 12.723340 ms]
Updating Assets/Wwise/Deployment/Components/AkAudioListener.cs - GUID: ca8bf95719915449f863a64e45629278...
----- Compute hash for Assets/Wwise/Deployment/Components/AkAudioListener.cs.
done. [Time: 9.177697 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkObjectInfo.cs - GUID: cb4e23a9ef1b448e083b38aab690029f...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkObjectInfo.cs.
done. [Time: 11.513004 ms]
Updating Assets/Wwise/Deployment/Components/AkTriggerMouseExit.cs - GUID: cb7564b97ecdd49aea118f9cc8f5f79a...
----- Compute hash for Assets/Wwise/Deployment/Components/AkTriggerMouseExit.cs.
done. [Time: 10.246408 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Mac/AkMacSettings.cs - GUID: ccdf35211acfa4ea79e6f502cf5d6bed...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Mac/AkMacSettings.cs.
done. [Time: 7.036030 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkXboxOneUtils.cs - GUID: ccf060875ac3947118b4c1ca801a25ab...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkXboxOneUtils.cs.
done. [Time: 10.918276 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkUtilities.cs - GUID: cd2ed4f021ece4bccbf253dc9e988486...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkUtilities.cs.
done. [Time: 9.278615 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/Ak3DPositionType.cs - GUID: cd59813de178244a7b8407e9f81183ba...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/Ak3DPositionType.cs.
done. [Time: 11.430171 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEventCallbackInfo.cs - GUID: ce64c2578ca354ce49f728671ad472a7...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEventCallbackInfo.cs.
done. [Time: 11.589261 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkSpatialAudioListenerInspector.cs - GUID: cfdc4ede323174d40adf73bdc5e4ce3e...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkSpatialAudioListenerInspector.cs.
done. [Time: 8.041695 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBaseGroupType.cs - GUID: d04d760ca2785494bb4f20ec651ed851...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes/AkWwiseBaseGroupType.cs.
done. [Time: 15.375555 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMonitoringCallbackInfo.cs - GUID: d3088993de96c4451804ad63cfae862e...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkMonitoringCallbackInfo.cs.
done. [Time: 11.847029 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkEventInspector.cs - GUID: d4d18faceccd1495199f6fb2a2e27eb9...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkEventInspector.cs.
done. [Time: 9.566789 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPlaylistItem.cs - GUID: d521ff06371754581931b6e6c78b14c7...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPlaylistItem.cs.
done. [Time: 13.942457 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkPropagationPathInfo.cs - GUID: d7e2ba17b5b524799a624a29492c19f7...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkPropagationPathInfo.cs.
done. [Time: 13.003559 ms]
Updating Assets/Wwise/Editor/WwiseWindows/AkWwiseComponentPicker.cs - GUID: dad1c19c25ded4156838ba87a52b76d7...
----- Compute hash for Assets/Wwise/Editor/WwiseWindows/AkWwiseComponentPicker.cs.
done. [Time: 14.698774 ms]
Updating Assets/Wwise/Editor/WwiseSetupWizard/AkUnitySettingsParser.cs - GUID: db4bebb75fa4e4137a05c62ff246a6b2...
----- Compute hash for Assets/Wwise/Editor/WwiseSetupWizard/AkUnitySettingsParser.cs.
done. [Time: 8.298298 ms]
Updating Assets/Wwise/Deployment/API/Generated/Mac/AkUnityPlatformSpecificSettings_Mac.cs - GUID: de6dbc88cee1143e6a3a0f2a26da40e5...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Mac/AkUnityPlatformSpecificSettings_Mac.cs.
done. [Time: 10.831950 ms]
Updating Assets/Wwise/Editor/WwiseTypes/AuxBusDrawer.cs - GUID: df2a5f3973c004755a33dcc1c28d6243...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/AuxBusDrawer.cs.
done. [Time: 12.665010 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkSpatialAudioInitSettings.cs - GUID: df9bff749797d4313be7dedeb6efb2e5...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkSpatialAudioInitSettings.cs.
done. [Time: 7.863857 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkWwiseXMLWatcher.cs - GUID: e004b1d9d0f05486cb5a1ea1f4c48cc3...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkWwiseXMLWatcher.cs.
done. [Time: 11.692572 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkAudioSourceChangeCallbackInfo.cs - GUID: e20ebab2941034516b2cb9867282619a...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkAudioSourceChangeCallbackInfo.cs.
done. [Time: 8.173184 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkIterator.cs - GUID: e3857bd269e5048ffa9837174f9f4482...
----- Compute hash for Assets/Wwise/Deployment/API/Generated/Common/AkIterator.cs.
done. [Time: 11.710378 ms]
Updating Assets/Wwise/Editor/WwiseTypes/BaseTypeDrawer.cs - GUID: e40a07191a8514f5085539b9a8329e00...
----- Compute hash for Assets/Wwise/Editor/WwiseTypes/BaseTypeDrawer.cs.
done. [Time: 18.043404 ms]
Updating Assets/Wwise/Deployment/Components/AkEventPlayable.cs - GUID: e60d3dabd92dd4797811fa7550910f76...
----- Compute hash for Assets/Wwise/Deployment/Components/AkEventPlayable.cs.
done. [Time: 17.734462 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkRoomInspector.cs - GUID: e65728f6b4141414db5f473c35a18b6f...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkRoomInspector.cs.
done. [Time: 10.943343 ms]
Updating Assets/Wwise/Deployment/Components/AkGameObjPositionData.cs - GUID: e7d3db1762aa14452adbdfe765484403...
----- Compute hash for Assets/Wwise/Deployment/Components/AkGameObjPositionData.cs.
done. [Time: 11.991451 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseAuxBusReference.cs - GUID: e8161460b7fc642f8964335a88daf27a...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects/WwiseAuxBusReference.cs.
done. [Time: 8.355749 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkEnumFlagAttribute.cs - GUID: e85b53c987b6c45dfb88612b74057468...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkEnumFlagAttribute.cs.
done. [Time: 13.247488 ms]
Updating Assets/Wwise/Deployment/Components/AkSurfaceReflector.cs - GUID: e89581ea6ec2a4d3b8157aa6f8fb1edd...
----- Compute hash for Assets/Wwise/Deployment/Components/AkSurfaceReflector.cs.
done. [Time: 12.878514 ms]
Updating Assets/Wwise/Deployment/API/Handwritten/Common/AkAudioInputManager.cs - GUID: eaf776e05e1404526ada79a7570d0f71...
----- Compute hash for Assets/Wwise/Deployment/API/Handwritten/Common/AkAudioInputManager.cs.
done. [Time: 11.298576 ms]
Updating Assets/Wwise/Editor/WwiseComponents/AkPortalManager.cs - GUID: ebb6bfed36b34440cb5998087b1dbbde...
----- Compute hash for Assets/Wwise/Editor/WwiseComponents/AkPortalManager.cs.
done. [Time: 14.458079 ms]
Updating Assets/Wwise/Deployment/API/Generated/Common/AkMonitorErrorCode.cs - GUID: ec452f8d4c14342198b1c73b857a21df...