This repository was archived by the owner on Nov 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUnityXrefmap.yml
More file actions
12430 lines (12430 loc) · 501 KB
/
UnityXrefmap.yml
File metadata and controls
12430 lines (12430 loc) · 501 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
### YamlMime:XRefMap
sorted: true
baseUrl: https://docs.unity3d.com/2019.4/Documentation/ScriptReference/
references:
- uid: UnityEngine.AccelerationEvent
name: AccelerationEvent
href: AccelerationEvent.html
commentId: T:UnityEngine.AccelerationEvent
fullName: UnityEngine.AccelerationEvent
nameWithType: AccelerationEvent
- uid: UnityEngine.Accessibility.VisionUtility
name: VisionUtility
href: Accessibility.VisionUtility.html
commentId: T:UnityEngine.Accessibility.VisionUtility
fullName: UnityEngine.Accessibility.VisionUtility
nameWithType: VisionUtility
- uid: UnityEngine.ADBannerView
name: ADBannerView
href: ADBannerView.html
commentId: T:UnityEngine.ADBannerView
fullName: UnityEngine.ADBannerView
nameWithType: ADBannerView
- uid: UnityEngine.ADBannerView.BannerWasClickedDelegate
name: BannerWasClickedDelegate
href: ADBannerView.BannerWasClickedDelegate.html
commentId: T:UnityEngine.ADBannerView.BannerWasClickedDelegate
fullName: UnityEngine.ADBannerView.BannerWasClickedDelegate
nameWithType: BannerWasClickedDelegate
- uid: UnityEngine.ADBannerView.BannerWasLoadedDelegate
name: BannerWasLoadedDelegate
href: ADBannerView.BannerWasLoadedDelegate.html
commentId: T:UnityEngine.ADBannerView.BannerWasLoadedDelegate
fullName: UnityEngine.ADBannerView.BannerWasLoadedDelegate
nameWithType: BannerWasLoadedDelegate
- uid: UnityEngine.ADBannerView.Layout
name: Layout
href: ADBannerView.Layout.html
commentId: T:UnityEngine.ADBannerView.Layout
fullName: UnityEngine.ADBannerView.Layout
nameWithType: Layout
- uid: UnityEngine.ADBannerView.Type
name: Type
href: ADBannerView.Type.html
commentId: T:UnityEngine.ADBannerView.Type
fullName: UnityEngine.ADBannerView.Type
nameWithType: Type
- uid: UnityEngine.AddComponentMenu
name: AddComponentMenu
href: AddComponentMenu.html
commentId: T:UnityEngine.AddComponentMenu
fullName: UnityEngine.AddComponentMenu
nameWithType: AddComponentMenu
- uid: UnityEngine.AdditionalCanvasShaderChannels
name: AdditionalCanvasShaderChannels
href: AdditionalCanvasShaderChannels.html
commentId: T:UnityEngine.AdditionalCanvasShaderChannels
fullName: UnityEngine.AdditionalCanvasShaderChannels
nameWithType: AdditionalCanvasShaderChannels
- uid: UnityEngine.ADInterstitialAd
name: ADInterstitialAd
href: ADInterstitialAd.html
commentId: T:UnityEngine.ADInterstitialAd
fullName: UnityEngine.ADInterstitialAd
nameWithType: ADInterstitialAd
- uid: UnityEngine.ADInterstitialAd.InterstitialWasLoadedDelegate
name: InterstitialWasLoadedDelegate
href: ADInterstitialAd.InterstitialWasLoadedDelegate.html
commentId: T:UnityEngine.ADInterstitialAd.InterstitialWasLoadedDelegate
fullName: UnityEngine.ADInterstitialAd.InterstitialWasLoadedDelegate
nameWithType: InterstitialWasLoadedDelegate
- uid: UnityEngine.AI.NavMesh
name: NavMesh
href: AI.NavMesh.html
commentId: T:UnityEngine.AI.NavMesh
fullName: UnityEngine.AI.NavMesh
nameWithType: NavMesh
- uid: UnityEngine.AI.NavMesh.OnNavMeshPreUpdate
name: OnNavMeshPreUpdate
href: AI.NavMesh.OnNavMeshPreUpdate.html
commentId: T:UnityEngine.AI.NavMesh.OnNavMeshPreUpdate
fullName: UnityEngine.AI.NavMesh.OnNavMeshPreUpdate
nameWithType: OnNavMeshPreUpdate
- uid: UnityEngine.AI.NavMeshAgent
name: NavMeshAgent
href: AI.NavMeshAgent.html
commentId: T:UnityEngine.AI.NavMeshAgent
fullName: UnityEngine.AI.NavMeshAgent
nameWithType: NavMeshAgent
- uid: UnityEngine.AI.NavMeshBuildDebugFlags
name: NavMeshBuildDebugFlags
href: AI.NavMeshBuildDebugFlags.html
commentId: T:UnityEngine.AI.NavMeshBuildDebugFlags
fullName: UnityEngine.AI.NavMeshBuildDebugFlags
nameWithType: NavMeshBuildDebugFlags
- uid: UnityEngine.AI.NavMeshBuildDebugSettings
name: NavMeshBuildDebugSettings
href: AI.NavMeshBuildDebugSettings.html
commentId: T:UnityEngine.AI.NavMeshBuildDebugSettings
fullName: UnityEngine.AI.NavMeshBuildDebugSettings
nameWithType: NavMeshBuildDebugSettings
- uid: UnityEngine.AI.NavMeshBuilder
name: NavMeshBuilder
href: AI.NavMeshBuilder.html
commentId: T:UnityEngine.AI.NavMeshBuilder
fullName: UnityEngine.AI.NavMeshBuilder
nameWithType: NavMeshBuilder
- uid: UnityEngine.AI.NavMeshBuildMarkup
name: NavMeshBuildMarkup
href: AI.NavMeshBuildMarkup.html
commentId: T:UnityEngine.AI.NavMeshBuildMarkup
fullName: UnityEngine.AI.NavMeshBuildMarkup
nameWithType: NavMeshBuildMarkup
- uid: UnityEngine.AI.NavMeshBuildSettings
name: NavMeshBuildSettings
href: AI.NavMeshBuildSettings.html
commentId: T:UnityEngine.AI.NavMeshBuildSettings
fullName: UnityEngine.AI.NavMeshBuildSettings
nameWithType: NavMeshBuildSettings
- uid: UnityEngine.AI.NavMeshBuildSource
name: NavMeshBuildSource
href: AI.NavMeshBuildSource.html
commentId: T:UnityEngine.AI.NavMeshBuildSource
fullName: UnityEngine.AI.NavMeshBuildSource
nameWithType: NavMeshBuildSource
- uid: UnityEngine.AI.NavMeshBuildSourceShape
name: NavMeshBuildSourceShape
href: AI.NavMeshBuildSourceShape.html
commentId: T:UnityEngine.AI.NavMeshBuildSourceShape
fullName: UnityEngine.AI.NavMeshBuildSourceShape
nameWithType: NavMeshBuildSourceShape
- uid: UnityEngine.AI.NavMeshCollectGeometry
name: NavMeshCollectGeometry
href: AI.NavMeshCollectGeometry.html
commentId: T:UnityEngine.AI.NavMeshCollectGeometry
fullName: UnityEngine.AI.NavMeshCollectGeometry
nameWithType: NavMeshCollectGeometry
- uid: UnityEngine.AI.NavMeshData
name: NavMeshData
href: AI.NavMeshData.html
commentId: T:UnityEngine.AI.NavMeshData
fullName: UnityEngine.AI.NavMeshData
nameWithType: NavMeshData
- uid: UnityEngine.AI.NavMeshDataInstance
name: NavMeshDataInstance
href: AI.NavMeshDataInstance.html
commentId: T:UnityEngine.AI.NavMeshDataInstance
fullName: UnityEngine.AI.NavMeshDataInstance
nameWithType: NavMeshDataInstance
- uid: UnityEngine.AI.NavMeshHit
name: NavMeshHit
href: AI.NavMeshHit.html
commentId: T:UnityEngine.AI.NavMeshHit
fullName: UnityEngine.AI.NavMeshHit
nameWithType: NavMeshHit
- uid: UnityEngine.AI.NavMeshLinkData
name: NavMeshLinkData
href: AI.NavMeshLinkData.html
commentId: T:UnityEngine.AI.NavMeshLinkData
fullName: UnityEngine.AI.NavMeshLinkData
nameWithType: NavMeshLinkData
- uid: UnityEngine.AI.NavMeshLinkInstance
name: NavMeshLinkInstance
href: AI.NavMeshLinkInstance.html
commentId: T:UnityEngine.AI.NavMeshLinkInstance
fullName: UnityEngine.AI.NavMeshLinkInstance
nameWithType: NavMeshLinkInstance
- uid: UnityEngine.AI.NavMeshObstacle
name: NavMeshObstacle
href: AI.NavMeshObstacle.html
commentId: T:UnityEngine.AI.NavMeshObstacle
fullName: UnityEngine.AI.NavMeshObstacle
nameWithType: NavMeshObstacle
- uid: UnityEngine.AI.NavMeshObstacleShape
name: NavMeshObstacleShape
href: AI.NavMeshObstacleShape.html
commentId: T:UnityEngine.AI.NavMeshObstacleShape
fullName: UnityEngine.AI.NavMeshObstacleShape
nameWithType: NavMeshObstacleShape
- uid: UnityEngine.AI.NavMeshPath
name: NavMeshPath
href: AI.NavMeshPath.html
commentId: T:UnityEngine.AI.NavMeshPath
fullName: UnityEngine.AI.NavMeshPath
nameWithType: NavMeshPath
- uid: UnityEngine.AI.NavMeshPathStatus
name: NavMeshPathStatus
href: AI.NavMeshPathStatus.html
commentId: T:UnityEngine.AI.NavMeshPathStatus
fullName: UnityEngine.AI.NavMeshPathStatus
nameWithType: NavMeshPathStatus
- uid: UnityEngine.AI.NavMeshQueryFilter
name: NavMeshQueryFilter
href: AI.NavMeshQueryFilter.html
commentId: T:UnityEngine.AI.NavMeshQueryFilter
fullName: UnityEngine.AI.NavMeshQueryFilter
nameWithType: NavMeshQueryFilter
- uid: UnityEngine.AI.NavMeshTriangulation
name: NavMeshTriangulation
href: AI.NavMeshTriangulation.html
commentId: T:UnityEngine.AI.NavMeshTriangulation
fullName: UnityEngine.AI.NavMeshTriangulation
nameWithType: NavMeshTriangulation
- uid: UnityEngine.AI.ObstacleAvoidanceType
name: ObstacleAvoidanceType
href: AI.ObstacleAvoidanceType.html
commentId: T:UnityEngine.AI.ObstacleAvoidanceType
fullName: UnityEngine.AI.ObstacleAvoidanceType
nameWithType: ObstacleAvoidanceType
- uid: UnityEngine.AI.OffMeshLink
name: OffMeshLink
href: AI.OffMeshLink.html
commentId: T:UnityEngine.AI.OffMeshLink
fullName: UnityEngine.AI.OffMeshLink
nameWithType: OffMeshLink
- uid: UnityEngine.AI.OffMeshLinkData
name: OffMeshLinkData
href: AI.OffMeshLinkData.html
commentId: T:UnityEngine.AI.OffMeshLinkData
fullName: UnityEngine.AI.OffMeshLinkData
nameWithType: OffMeshLinkData
- uid: UnityEngine.AI.OffMeshLinkType
name: OffMeshLinkType
href: AI.OffMeshLinkType.html
commentId: T:UnityEngine.AI.OffMeshLinkType
fullName: UnityEngine.AI.OffMeshLinkType
nameWithType: OffMeshLinkType
- uid: UnityEngine.Analytics.Analytics
name: Analytics
href: Analytics.Analytics.html
commentId: T:UnityEngine.Analytics.Analytics
fullName: UnityEngine.Analytics.Analytics
nameWithType: Analytics
- uid: UnityEngine.Analytics.AnalyticsEventPriority
name: AnalyticsEventPriority
href: Analytics.AnalyticsEventPriority.html
commentId: T:UnityEngine.Analytics.AnalyticsEventPriority
fullName: UnityEngine.Analytics.AnalyticsEventPriority
nameWithType: AnalyticsEventPriority
- uid: UnityEngine.Analytics.AnalyticsResult
name: AnalyticsResult
href: Analytics.AnalyticsResult.html
commentId: T:UnityEngine.Analytics.AnalyticsResult
fullName: UnityEngine.Analytics.AnalyticsResult
nameWithType: AnalyticsResult
- uid: UnityEngine.Analytics.AnalyticsSessionInfo
name: AnalyticsSessionInfo
href: Analytics.AnalyticsSessionInfo.html
commentId: T:UnityEngine.Analytics.AnalyticsSessionInfo
fullName: UnityEngine.Analytics.AnalyticsSessionInfo
nameWithType: AnalyticsSessionInfo
- uid: UnityEngine.Analytics.AnalyticsSessionInfo.IdentityTokenChanged
name: IdentityTokenChanged
href: Analytics.AnalyticsSessionInfo.IdentityTokenChanged.html
commentId: T:UnityEngine.Analytics.AnalyticsSessionInfo.IdentityTokenChanged
fullName: UnityEngine.Analytics.AnalyticsSessionInfo.IdentityTokenChanged
nameWithType: IdentityTokenChanged
- uid: UnityEngine.Analytics.AnalyticsSessionInfo.SessionStateChanged
name: SessionStateChanged
href: Analytics.AnalyticsSessionInfo.SessionStateChanged.html
commentId: T:UnityEngine.Analytics.AnalyticsSessionInfo.SessionStateChanged
fullName: UnityEngine.Analytics.AnalyticsSessionInfo.SessionStateChanged
nameWithType: SessionStateChanged
- uid: UnityEngine.Analytics.AnalyticsSessionState
name: AnalyticsSessionState
href: Analytics.AnalyticsSessionState.html
commentId: T:UnityEngine.Analytics.AnalyticsSessionState
fullName: UnityEngine.Analytics.AnalyticsSessionState
nameWithType: AnalyticsSessionState
- uid: UnityEngine.Analytics.ContinuousEvent
name: ContinuousEvent
href: Analytics.ContinuousEvent.html
commentId: T:UnityEngine.Analytics.ContinuousEvent
fullName: UnityEngine.Analytics.ContinuousEvent
nameWithType: ContinuousEvent
- uid: UnityEngine.Analytics.Gender
name: Gender
href: Analytics.Gender.html
commentId: T:UnityEngine.Analytics.Gender
fullName: UnityEngine.Analytics.Gender
nameWithType: Gender
- uid: UnityEngine.Analytics.PerformanceReporting
name: PerformanceReporting
href: Analytics.PerformanceReporting.html
commentId: T:UnityEngine.Analytics.PerformanceReporting
fullName: UnityEngine.Analytics.PerformanceReporting
nameWithType: PerformanceReporting
- uid: UnityEngine.AnchoredJoint2D
name: AnchoredJoint2D
href: AnchoredJoint2D.html
commentId: T:UnityEngine.AnchoredJoint2D
fullName: UnityEngine.AnchoredJoint2D
nameWithType: AnchoredJoint2D
- uid: UnityEngine.Android.AndroidDevice
name: AndroidDevice
href: Android.AndroidDevice.html
commentId: T:UnityEngine.Android.AndroidDevice
fullName: UnityEngine.Android.AndroidDevice
nameWithType: AndroidDevice
- uid: UnityEngine.Android.Permission
name: Permission
href: Android.Permission.html
commentId: T:UnityEngine.Android.Permission
fullName: UnityEngine.Android.Permission
nameWithType: Permission
- uid: UnityEngine.AndroidActivityIndicatorStyle
name: AndroidActivityIndicatorStyle
href: AndroidActivityIndicatorStyle.html
commentId: T:UnityEngine.AndroidActivityIndicatorStyle
fullName: UnityEngine.AndroidActivityIndicatorStyle
nameWithType: AndroidActivityIndicatorStyle
- uid: UnityEngine.AndroidInput
name: AndroidInput
href: AndroidInput.html
commentId: T:UnityEngine.AndroidInput
fullName: UnityEngine.AndroidInput
nameWithType: AndroidInput
- uid: UnityEngine.AndroidJavaClass
name: AndroidJavaClass
href: AndroidJavaClass.html
commentId: T:UnityEngine.AndroidJavaClass
fullName: UnityEngine.AndroidJavaClass
nameWithType: AndroidJavaClass
- uid: UnityEngine.AndroidJavaException
name: AndroidJavaException
href: AndroidJavaException.html
commentId: T:UnityEngine.AndroidJavaException
fullName: UnityEngine.AndroidJavaException
nameWithType: AndroidJavaException
- uid: UnityEngine.AndroidJavaObject
name: AndroidJavaObject
href: AndroidJavaObject.html
commentId: T:UnityEngine.AndroidJavaObject
fullName: UnityEngine.AndroidJavaObject
nameWithType: AndroidJavaObject
- uid: UnityEngine.AndroidJavaProxy
name: AndroidJavaProxy
href: AndroidJavaProxy.html
commentId: T:UnityEngine.AndroidJavaProxy
fullName: UnityEngine.AndroidJavaProxy
nameWithType: AndroidJavaProxy
- uid: UnityEngine.AndroidJavaRunnable
name: AndroidJavaRunnable
href: AndroidJavaRunnable.html
commentId: T:UnityEngine.AndroidJavaRunnable
fullName: UnityEngine.AndroidJavaRunnable
nameWithType: AndroidJavaRunnable
- uid: UnityEngine.AndroidJNI
name: AndroidJNI
href: AndroidJNI.html
commentId: T:UnityEngine.AndroidJNI
fullName: UnityEngine.AndroidJNI
nameWithType: AndroidJNI
- uid: UnityEngine.AndroidJNIHelper
name: AndroidJNIHelper
href: AndroidJNIHelper.html
commentId: T:UnityEngine.AndroidJNIHelper
fullName: UnityEngine.AndroidJNIHelper
nameWithType: AndroidJNIHelper
- uid: UnityEngine.Animation
name: Animation
href: Animation.html
commentId: T:UnityEngine.Animation
fullName: UnityEngine.Animation
nameWithType: Animation
- uid: UnityEngine.AnimationBlendMode
name: AnimationBlendMode
href: AnimationBlendMode.html
commentId: T:UnityEngine.AnimationBlendMode
fullName: UnityEngine.AnimationBlendMode
nameWithType: AnimationBlendMode
- uid: UnityEngine.AnimationClip
name: AnimationClip
href: AnimationClip.html
commentId: T:UnityEngine.AnimationClip
fullName: UnityEngine.AnimationClip
nameWithType: AnimationClip
- uid: UnityEngine.AnimationClipPair
name: AnimationClipPair
href: AnimationClipPair.html
commentId: T:UnityEngine.AnimationClipPair
fullName: UnityEngine.AnimationClipPair
nameWithType: AnimationClipPair
- uid: UnityEngine.AnimationCullingType
name: AnimationCullingType
href: AnimationCullingType.html
commentId: T:UnityEngine.AnimationCullingType
fullName: UnityEngine.AnimationCullingType
nameWithType: AnimationCullingType
- uid: UnityEngine.AnimationCurve
name: AnimationCurve
href: AnimationCurve.html
commentId: T:UnityEngine.AnimationCurve
fullName: UnityEngine.AnimationCurve
nameWithType: AnimationCurve
- uid: UnityEngine.AnimationEvent
name: AnimationEvent
href: AnimationEvent.html
commentId: T:UnityEngine.AnimationEvent
fullName: UnityEngine.AnimationEvent
nameWithType: AnimationEvent
- uid: UnityEngine.AnimationInfo
name: AnimationInfo
href: AnimationInfo.html
commentId: T:UnityEngine.AnimationInfo
fullName: UnityEngine.AnimationInfo
nameWithType: AnimationInfo
- uid: UnityEngine.AnimationPlayMode
name: AnimationPlayMode
href: AnimationPlayMode.html
commentId: T:UnityEngine.AnimationPlayMode
fullName: UnityEngine.AnimationPlayMode
nameWithType: AnimationPlayMode
- uid: UnityEngine.Animations.AimConstraint
name: AimConstraint
href: Animations.AimConstraint.html
commentId: T:UnityEngine.Animations.AimConstraint
fullName: UnityEngine.Animations.AimConstraint
nameWithType: AimConstraint
- uid: UnityEngine.Animations.AimConstraint.WorldUpType
name: WorldUpType
href: Animations.AimConstraint.WorldUpType.html
commentId: T:UnityEngine.Animations.AimConstraint.WorldUpType
fullName: UnityEngine.Animations.AimConstraint.WorldUpType
nameWithType: WorldUpType
- uid: UnityEngine.Animations.AnimationClipPlayable
name: AnimationClipPlayable
href: Animations.AnimationClipPlayable.html
commentId: T:UnityEngine.Animations.AnimationClipPlayable
fullName: UnityEngine.Animations.AnimationClipPlayable
nameWithType: AnimationClipPlayable
- uid: UnityEngine.Animations.AnimationHumanStream
name: AnimationHumanStream
href: Animations.AnimationHumanStream.html
commentId: T:UnityEngine.Animations.AnimationHumanStream
fullName: UnityEngine.Animations.AnimationHumanStream
nameWithType: AnimationHumanStream
- uid: UnityEngine.Animations.AnimationLayerMixerPlayable
name: AnimationLayerMixerPlayable
href: Animations.AnimationLayerMixerPlayable.html
commentId: T:UnityEngine.Animations.AnimationLayerMixerPlayable
fullName: UnityEngine.Animations.AnimationLayerMixerPlayable
nameWithType: AnimationLayerMixerPlayable
- uid: UnityEngine.Animations.AnimationMixerPlayable
name: AnimationMixerPlayable
href: Animations.AnimationMixerPlayable.html
commentId: T:UnityEngine.Animations.AnimationMixerPlayable
fullName: UnityEngine.Animations.AnimationMixerPlayable
nameWithType: AnimationMixerPlayable
- uid: UnityEngine.Animations.AnimationPlayableBinding
name: AnimationPlayableBinding
href: Animations.AnimationPlayableBinding.html
commentId: T:UnityEngine.Animations.AnimationPlayableBinding
fullName: UnityEngine.Animations.AnimationPlayableBinding
nameWithType: AnimationPlayableBinding
- uid: UnityEngine.Animations.AnimationPlayableExtensions
name: AnimationPlayableExtensions
href: Animations.AnimationPlayableExtensions.html
commentId: T:UnityEngine.Animations.AnimationPlayableExtensions
fullName: UnityEngine.Animations.AnimationPlayableExtensions
nameWithType: AnimationPlayableExtensions
- uid: UnityEngine.Animations.AnimationPlayableOutput
name: AnimationPlayableOutput
href: Animations.AnimationPlayableOutput.html
commentId: T:UnityEngine.Animations.AnimationPlayableOutput
fullName: UnityEngine.Animations.AnimationPlayableOutput
nameWithType: AnimationPlayableOutput
- uid: UnityEngine.Animations.AnimationSceneHandleUtility
name: AnimationSceneHandleUtility
href: Animations.AnimationSceneHandleUtility.html
commentId: T:UnityEngine.Animations.AnimationSceneHandleUtility
fullName: UnityEngine.Animations.AnimationSceneHandleUtility
nameWithType: AnimationSceneHandleUtility
- uid: UnityEngine.Animations.AnimationScriptPlayable
name: AnimationScriptPlayable
href: Animations.AnimationScriptPlayable.html
commentId: T:UnityEngine.Animations.AnimationScriptPlayable
fullName: UnityEngine.Animations.AnimationScriptPlayable
nameWithType: AnimationScriptPlayable
- uid: UnityEngine.Animations.AnimationStream
name: AnimationStream
href: Animations.AnimationStream.html
commentId: T:UnityEngine.Animations.AnimationStream
fullName: UnityEngine.Animations.AnimationStream
nameWithType: AnimationStream
- uid: UnityEngine.Animations.AnimationStreamHandleUtility
name: AnimationStreamHandleUtility
href: Animations.AnimationStreamHandleUtility.html
commentId: T:UnityEngine.Animations.AnimationStreamHandleUtility
fullName: UnityEngine.Animations.AnimationStreamHandleUtility
nameWithType: AnimationStreamHandleUtility
- uid: UnityEngine.Animations.AnimatorControllerPlayable
name: AnimatorControllerPlayable
href: Animations.AnimatorControllerPlayable.html
commentId: T:UnityEngine.Animations.AnimatorControllerPlayable
fullName: UnityEngine.Animations.AnimatorControllerPlayable
nameWithType: AnimatorControllerPlayable
- uid: UnityEngine.Animations.AnimatorJobExtensions
name: AnimatorJobExtensions
href: Animations.AnimatorJobExtensions.html
commentId: T:UnityEngine.Animations.AnimatorJobExtensions
fullName: UnityEngine.Animations.AnimatorJobExtensions
nameWithType: AnimatorJobExtensions
- uid: UnityEngine.Animations.Axis
name: Axis
href: Animations.Axis.html
commentId: T:UnityEngine.Animations.Axis
fullName: UnityEngine.Animations.Axis
nameWithType: Axis
- uid: UnityEngine.Animations.ConstraintSource
name: ConstraintSource
href: Animations.ConstraintSource.html
commentId: T:UnityEngine.Animations.ConstraintSource
fullName: UnityEngine.Animations.ConstraintSource
nameWithType: ConstraintSource
- uid: UnityEngine.Animations.CustomStreamPropertyType
name: CustomStreamPropertyType
href: Animations.CustomStreamPropertyType.html
commentId: T:UnityEngine.Animations.CustomStreamPropertyType
fullName: UnityEngine.Animations.CustomStreamPropertyType
nameWithType: CustomStreamPropertyType
- uid: UnityEngine.Animations.IAnimationJob
name: IAnimationJob
href: Animations.IAnimationJob.html
commentId: T:UnityEngine.Animations.IAnimationJob
fullName: UnityEngine.Animations.IAnimationJob
nameWithType: IAnimationJob
- uid: UnityEngine.Animations.IAnimationJobPlayable
name: IAnimationJobPlayable
href: Animations.IAnimationJobPlayable.html
commentId: T:UnityEngine.Animations.IAnimationJobPlayable
fullName: UnityEngine.Animations.IAnimationJobPlayable
nameWithType: IAnimationJobPlayable
- uid: UnityEngine.Animations.IConstraint
name: IConstraint
href: Animations.IConstraint.html
commentId: T:UnityEngine.Animations.IConstraint
fullName: UnityEngine.Animations.IConstraint
nameWithType: IConstraint
- uid: UnityEngine.Animations.LookAtConstraint
name: LookAtConstraint
href: Animations.LookAtConstraint.html
commentId: T:UnityEngine.Animations.LookAtConstraint
fullName: UnityEngine.Animations.LookAtConstraint
nameWithType: LookAtConstraint
- uid: UnityEngine.Animations.MuscleHandle
name: MuscleHandle
href: Animations.MuscleHandle.html
commentId: T:UnityEngine.Animations.MuscleHandle
fullName: UnityEngine.Animations.MuscleHandle
nameWithType: MuscleHandle
- uid: UnityEngine.Animations.NotKeyableAttribute
name: NotKeyableAttribute
href: Animations.NotKeyableAttribute.html
commentId: T:UnityEngine.Animations.NotKeyableAttribute
fullName: UnityEngine.Animations.NotKeyableAttribute
nameWithType: NotKeyableAttribute
- uid: UnityEngine.Animations.ParentConstraint
name: ParentConstraint
href: Animations.ParentConstraint.html
commentId: T:UnityEngine.Animations.ParentConstraint
fullName: UnityEngine.Animations.ParentConstraint
nameWithType: ParentConstraint
- uid: UnityEngine.Animations.PositionConstraint
name: PositionConstraint
href: Animations.PositionConstraint.html
commentId: T:UnityEngine.Animations.PositionConstraint
fullName: UnityEngine.Animations.PositionConstraint
nameWithType: PositionConstraint
- uid: UnityEngine.Animations.PropertySceneHandle
name: PropertySceneHandle
href: Animations.PropertySceneHandle.html
commentId: T:UnityEngine.Animations.PropertySceneHandle
fullName: UnityEngine.Animations.PropertySceneHandle
nameWithType: PropertySceneHandle
- uid: UnityEngine.Animations.PropertyStreamHandle
name: PropertyStreamHandle
href: Animations.PropertyStreamHandle.html
commentId: T:UnityEngine.Animations.PropertyStreamHandle
fullName: UnityEngine.Animations.PropertyStreamHandle
nameWithType: PropertyStreamHandle
- uid: UnityEngine.Animations.RotationConstraint
name: RotationConstraint
href: Animations.RotationConstraint.html
commentId: T:UnityEngine.Animations.RotationConstraint
fullName: UnityEngine.Animations.RotationConstraint
nameWithType: RotationConstraint
- uid: UnityEngine.Animations.ScaleConstraint
name: ScaleConstraint
href: Animations.ScaleConstraint.html
commentId: T:UnityEngine.Animations.ScaleConstraint
fullName: UnityEngine.Animations.ScaleConstraint
nameWithType: ScaleConstraint
- uid: UnityEngine.Animations.TransformSceneHandle
name: TransformSceneHandle
href: Animations.TransformSceneHandle.html
commentId: T:UnityEngine.Animations.TransformSceneHandle
fullName: UnityEngine.Animations.TransformSceneHandle
nameWithType: TransformSceneHandle
- uid: UnityEngine.Animations.TransformStreamHandle
name: TransformStreamHandle
href: Animations.TransformStreamHandle.html
commentId: T:UnityEngine.Animations.TransformStreamHandle
fullName: UnityEngine.Animations.TransformStreamHandle
nameWithType: TransformStreamHandle
- uid: UnityEngine.AnimationState
name: AnimationState
href: AnimationState.html
commentId: T:UnityEngine.AnimationState
fullName: UnityEngine.AnimationState
nameWithType: AnimationState
- uid: UnityEngine.Animator
name: Animator
href: Animator.html
commentId: T:UnityEngine.Animator
fullName: UnityEngine.Animator
nameWithType: Animator
- uid: UnityEngine.AnimatorClipInfo
name: AnimatorClipInfo
href: AnimatorClipInfo.html
commentId: T:UnityEngine.AnimatorClipInfo
fullName: UnityEngine.AnimatorClipInfo
nameWithType: AnimatorClipInfo
- uid: UnityEngine.AnimatorControllerParameter
name: AnimatorControllerParameter
href: AnimatorControllerParameter.html
commentId: T:UnityEngine.AnimatorControllerParameter
fullName: UnityEngine.AnimatorControllerParameter
nameWithType: AnimatorControllerParameter
- uid: UnityEngine.AnimatorControllerParameterType
name: AnimatorControllerParameterType
href: AnimatorControllerParameterType.html
commentId: T:UnityEngine.AnimatorControllerParameterType
fullName: UnityEngine.AnimatorControllerParameterType
nameWithType: AnimatorControllerParameterType
- uid: UnityEngine.AnimatorCullingMode
name: AnimatorCullingMode
href: AnimatorCullingMode.html
commentId: T:UnityEngine.AnimatorCullingMode
fullName: UnityEngine.AnimatorCullingMode
nameWithType: AnimatorCullingMode
- uid: UnityEngine.AnimatorOverrideController
name: AnimatorOverrideController
href: AnimatorOverrideController.html
commentId: T:UnityEngine.AnimatorOverrideController
fullName: UnityEngine.AnimatorOverrideController
nameWithType: AnimatorOverrideController
- uid: UnityEngine.AnimatorRecorderMode
name: AnimatorRecorderMode
href: AnimatorRecorderMode.html
commentId: T:UnityEngine.AnimatorRecorderMode
fullName: UnityEngine.AnimatorRecorderMode
nameWithType: AnimatorRecorderMode
- uid: UnityEngine.AnimatorStateInfo
name: AnimatorStateInfo
href: AnimatorStateInfo.html
commentId: T:UnityEngine.AnimatorStateInfo
fullName: UnityEngine.AnimatorStateInfo
nameWithType: AnimatorStateInfo
- uid: UnityEngine.AnimatorTransitionInfo
name: AnimatorTransitionInfo
href: AnimatorTransitionInfo.html
commentId: T:UnityEngine.AnimatorTransitionInfo
fullName: UnityEngine.AnimatorTransitionInfo
nameWithType: AnimatorTransitionInfo
- uid: UnityEngine.AnimatorUpdateMode
name: AnimatorUpdateMode
href: AnimatorUpdateMode.html
commentId: T:UnityEngine.AnimatorUpdateMode
fullName: UnityEngine.AnimatorUpdateMode
nameWithType: AnimatorUpdateMode
- uid: UnityEngine.AnimatorUtility
name: AnimatorUtility
href: AnimatorUtility.html
commentId: T:UnityEngine.AnimatorUtility
fullName: UnityEngine.AnimatorUtility
nameWithType: AnimatorUtility
- uid: UnityEngine.AnisotropicFiltering
name: AnisotropicFiltering
href: AnisotropicFiltering.html
commentId: T:UnityEngine.AnisotropicFiltering
fullName: UnityEngine.AnisotropicFiltering
nameWithType: AnisotropicFiltering
- uid: UnityEngine.Apple.ReplayKit.ReplayKit
name: ReplayKit
href: Apple.ReplayKit.ReplayKit.html
commentId: T:UnityEngine.Apple.ReplayKit.ReplayKit
fullName: UnityEngine.Apple.ReplayKit.ReplayKit
nameWithType: ReplayKit
- uid: UnityEngine.Apple.ReplayKit.ReplayKit.BroadcastStatusCallback
name: BroadcastStatusCallback
href: Apple.ReplayKit.ReplayKit.BroadcastStatusCallback.html
commentId: T:UnityEngine.Apple.ReplayKit.ReplayKit.BroadcastStatusCallback
fullName: UnityEngine.Apple.ReplayKit.ReplayKit.BroadcastStatusCallback
nameWithType: BroadcastStatusCallback
- uid: UnityEngine.Apple.TV.Remote
name: Remote
href: Apple.TV.Remote.html
commentId: T:UnityEngine.Apple.TV.Remote
fullName: UnityEngine.Apple.TV.Remote
nameWithType: Remote
- uid: UnityEngine.Application
name: Application
href: Application.html
commentId: T:UnityEngine.Application
fullName: UnityEngine.Application
nameWithType: Application
- uid: UnityEngine.Application.AdvertisingIdentifierCallback
name: AdvertisingIdentifierCallback
href: Application.AdvertisingIdentifierCallback.html
commentId: T:UnityEngine.Application.AdvertisingIdentifierCallback
fullName: UnityEngine.Application.AdvertisingIdentifierCallback
nameWithType: AdvertisingIdentifierCallback
- uid: UnityEngine.Application.LogCallback
name: LogCallback
href: Application.LogCallback.html
commentId: T:UnityEngine.Application.LogCallback
fullName: UnityEngine.Application.LogCallback
nameWithType: LogCallback
- uid: UnityEngine.Application.LowMemoryCallback
name: LowMemoryCallback
href: Application.LowMemoryCallback.html
commentId: T:UnityEngine.Application.LowMemoryCallback
fullName: UnityEngine.Application.LowMemoryCallback
nameWithType: LowMemoryCallback
- uid: UnityEngine.ApplicationInstallMode
name: ApplicationInstallMode
href: ApplicationInstallMode.html
commentId: T:UnityEngine.ApplicationInstallMode
fullName: UnityEngine.ApplicationInstallMode
nameWithType: ApplicationInstallMode
- uid: UnityEngine.ApplicationSandboxType
name: ApplicationSandboxType
href: ApplicationSandboxType.html
commentId: T:UnityEngine.ApplicationSandboxType
fullName: UnityEngine.ApplicationSandboxType
nameWithType: ApplicationSandboxType
- uid: UnityEngine.AreaEffector2D
name: AreaEffector2D
href: AreaEffector2D.html
commentId: T:UnityEngine.AreaEffector2D
fullName: UnityEngine.AreaEffector2D
nameWithType: AreaEffector2D
- uid: UnityEngine.ArmDof
name: ArmDof
href: ArmDof.html
commentId: T:UnityEngine.ArmDof
fullName: UnityEngine.ArmDof
nameWithType: ArmDof
- uid: UnityEngine.AssemblyIsEditorAssembly
name: AssemblyIsEditorAssembly
href: AssemblyIsEditorAssembly.html
commentId: T:UnityEngine.AssemblyIsEditorAssembly
fullName: UnityEngine.AssemblyIsEditorAssembly
nameWithType: AssemblyIsEditorAssembly
- uid: UnityEngine.Assertions.Assert
name: Assert
href: Assertions.Assert.html
commentId: T:UnityEngine.Assertions.Assert
fullName: UnityEngine.Assertions.Assert
nameWithType: Assert
- uid: UnityEngine.Assertions.AssertionException
name: AssertionException
href: Assertions.AssertionException.html
commentId: T:UnityEngine.Assertions.AssertionException
fullName: UnityEngine.Assertions.AssertionException
nameWithType: AssertionException
- uid: UnityEngine.Assertions.Comparers.FloatComparer
name: FloatComparer
href: Assertions.Comparers.FloatComparer.html
commentId: T:UnityEngine.Assertions.Comparers.FloatComparer
fullName: UnityEngine.Assertions.Comparers.FloatComparer
nameWithType: FloatComparer
- uid: UnityEngine.Assertions.Must.MustExtensions
name: MustExtensions
href: Assertions.Must.MustExtensions.html
commentId: T:UnityEngine.Assertions.Must.MustExtensions
fullName: UnityEngine.Assertions.Must.MustExtensions
nameWithType: MustExtensions
- uid: UnityEngine.AssetBundle
name: AssetBundle
href: AssetBundle.html
commentId: T:UnityEngine.AssetBundle
fullName: UnityEngine.AssetBundle
nameWithType: AssetBundle
- uid: UnityEngine.AssetBundleCreateRequest
name: AssetBundleCreateRequest
href: AssetBundleCreateRequest.html
commentId: T:UnityEngine.AssetBundleCreateRequest
fullName: UnityEngine.AssetBundleCreateRequest
nameWithType: AssetBundleCreateRequest
- uid: UnityEngine.AssetBundleLoadResult
name: AssetBundleLoadResult
href: AssetBundleLoadResult.html
commentId: T:UnityEngine.AssetBundleLoadResult
fullName: UnityEngine.AssetBundleLoadResult
nameWithType: AssetBundleLoadResult
- uid: UnityEngine.AssetBundleManifest
name: AssetBundleManifest
href: AssetBundleManifest.html
commentId: T:UnityEngine.AssetBundleManifest
fullName: UnityEngine.AssetBundleManifest
nameWithType: AssetBundleManifest
- uid: UnityEngine.AssetBundleRecompressOperation
name: AssetBundleRecompressOperation
href: AssetBundleRecompressOperation.html
commentId: T:UnityEngine.AssetBundleRecompressOperation
fullName: UnityEngine.AssetBundleRecompressOperation
nameWithType: AssetBundleRecompressOperation
- uid: UnityEngine.AssetBundleRequest
name: AssetBundleRequest
href: AssetBundleRequest.html
commentId: T:UnityEngine.AssetBundleRequest
fullName: UnityEngine.AssetBundleRequest
nameWithType: AssetBundleRequest
- uid: UnityEngine.AsyncOperation
name: AsyncOperation
href: AsyncOperation.html
commentId: T:UnityEngine.AsyncOperation
fullName: UnityEngine.AsyncOperation
nameWithType: AsyncOperation
- uid: UnityEngine.Audio.AudioClipPlayable
name: AudioClipPlayable
href: Audio.AudioClipPlayable.html
commentId: T:UnityEngine.Audio.AudioClipPlayable
fullName: UnityEngine.Audio.AudioClipPlayable
nameWithType: AudioClipPlayable
- uid: UnityEngine.Audio.AudioMixer
name: AudioMixer
href: Audio.AudioMixer.html
commentId: T:UnityEngine.Audio.AudioMixer
fullName: UnityEngine.Audio.AudioMixer
nameWithType: AudioMixer
- uid: UnityEngine.Audio.AudioMixerGroup
name: AudioMixerGroup
href: Audio.AudioMixerGroup.html
commentId: T:UnityEngine.Audio.AudioMixerGroup
fullName: UnityEngine.Audio.AudioMixerGroup
nameWithType: AudioMixerGroup
- uid: UnityEngine.Audio.AudioMixerPlayable
name: AudioMixerPlayable
href: Audio.AudioMixerPlayable.html
commentId: T:UnityEngine.Audio.AudioMixerPlayable
fullName: UnityEngine.Audio.AudioMixerPlayable
nameWithType: AudioMixerPlayable
- uid: UnityEngine.Audio.AudioMixerSnapshot
name: AudioMixerSnapshot
href: Audio.AudioMixerSnapshot.html
commentId: T:UnityEngine.Audio.AudioMixerSnapshot
fullName: UnityEngine.Audio.AudioMixerSnapshot
nameWithType: AudioMixerSnapshot
- uid: UnityEngine.Audio.AudioMixerUpdateMode
name: AudioMixerUpdateMode
href: Audio.AudioMixerUpdateMode.html
commentId: T:UnityEngine.Audio.AudioMixerUpdateMode
fullName: UnityEngine.Audio.AudioMixerUpdateMode
nameWithType: AudioMixerUpdateMode
- uid: UnityEngine.Audio.AudioPlayableBinding
name: AudioPlayableBinding
href: Audio.AudioPlayableBinding.html
commentId: T:UnityEngine.Audio.AudioPlayableBinding
fullName: UnityEngine.Audio.AudioPlayableBinding
nameWithType: AudioPlayableBinding
- uid: UnityEngine.Audio.AudioPlayableOutput
name: AudioPlayableOutput
href: Audio.AudioPlayableOutput.html
commentId: T:UnityEngine.Audio.AudioPlayableOutput
fullName: UnityEngine.Audio.AudioPlayableOutput
nameWithType: AudioPlayableOutput
- uid: UnityEngine.AudioBehaviour
name: AudioBehaviour
href: AudioBehaviour.html
commentId: T:UnityEngine.AudioBehaviour
fullName: UnityEngine.AudioBehaviour
nameWithType: AudioBehaviour
- uid: UnityEngine.AudioChorusFilter
name: AudioChorusFilter
href: AudioChorusFilter.html
commentId: T:UnityEngine.AudioChorusFilter
fullName: UnityEngine.AudioChorusFilter
nameWithType: AudioChorusFilter
- uid: UnityEngine.AudioClip
name: AudioClip
href: AudioClip.html
commentId: T:UnityEngine.AudioClip
fullName: UnityEngine.AudioClip
nameWithType: AudioClip
- uid: UnityEngine.AudioClip.PCMReaderCallback
name: PCMReaderCallback
href: AudioClip.PCMReaderCallback.html
commentId: T:UnityEngine.AudioClip.PCMReaderCallback
fullName: UnityEngine.AudioClip.PCMReaderCallback
nameWithType: PCMReaderCallback
- uid: UnityEngine.AudioClip.PCMSetPositionCallback
name: PCMSetPositionCallback
href: AudioClip.PCMSetPositionCallback.html
commentId: T:UnityEngine.AudioClip.PCMSetPositionCallback
fullName: UnityEngine.AudioClip.PCMSetPositionCallback
nameWithType: PCMSetPositionCallback
- uid: UnityEngine.AudioClipLoadType
name: AudioClipLoadType
href: AudioClipLoadType.html
commentId: T:UnityEngine.AudioClipLoadType
fullName: UnityEngine.AudioClipLoadType
nameWithType: AudioClipLoadType
- uid: UnityEngine.AudioCompressionFormat
name: AudioCompressionFormat
href: AudioCompressionFormat.html
commentId: T:UnityEngine.AudioCompressionFormat
fullName: UnityEngine.AudioCompressionFormat
nameWithType: AudioCompressionFormat
- uid: UnityEngine.AudioConfiguration
name: AudioConfiguration
href: AudioConfiguration.html
commentId: T:UnityEngine.AudioConfiguration
fullName: UnityEngine.AudioConfiguration
nameWithType: AudioConfiguration
- uid: UnityEngine.AudioDataLoadState
name: AudioDataLoadState
href: AudioDataLoadState.html
commentId: T:UnityEngine.AudioDataLoadState
fullName: UnityEngine.AudioDataLoadState
nameWithType: AudioDataLoadState
- uid: UnityEngine.AudioDistortionFilter
name: AudioDistortionFilter
href: AudioDistortionFilter.html
commentId: T:UnityEngine.AudioDistortionFilter
fullName: UnityEngine.AudioDistortionFilter
nameWithType: AudioDistortionFilter
- uid: UnityEngine.AudioEchoFilter
name: AudioEchoFilter
href: AudioEchoFilter.html
commentId: T:UnityEngine.AudioEchoFilter
fullName: UnityEngine.AudioEchoFilter
nameWithType: AudioEchoFilter
- uid: UnityEngine.AudioHighPassFilter
name: AudioHighPassFilter
href: AudioHighPassFilter.html
commentId: T:UnityEngine.AudioHighPassFilter
fullName: UnityEngine.AudioHighPassFilter
nameWithType: AudioHighPassFilter
- uid: UnityEngine.AudioListener
name: AudioListener
href: AudioListener.html
commentId: T:UnityEngine.AudioListener
fullName: UnityEngine.AudioListener
nameWithType: AudioListener
- uid: UnityEngine.AudioLowPassFilter
name: AudioLowPassFilter
href: AudioLowPassFilter.html
commentId: T:UnityEngine.AudioLowPassFilter
fullName: UnityEngine.AudioLowPassFilter
nameWithType: AudioLowPassFilter
- uid: UnityEngine.AudioRenderer
name: AudioRenderer
href: AudioRenderer.html
commentId: T:UnityEngine.AudioRenderer
fullName: UnityEngine.AudioRenderer
nameWithType: AudioRenderer
- uid: UnityEngine.AudioReverbFilter
name: AudioReverbFilter
href: AudioReverbFilter.html
commentId: T:UnityEngine.AudioReverbFilter
fullName: UnityEngine.AudioReverbFilter
nameWithType: AudioReverbFilter
- uid: UnityEngine.AudioReverbPreset
name: AudioReverbPreset
href: AudioReverbPreset.html
commentId: T:UnityEngine.AudioReverbPreset
fullName: UnityEngine.AudioReverbPreset
nameWithType: AudioReverbPreset
- uid: UnityEngine.AudioReverbZone
name: AudioReverbZone
href: AudioReverbZone.html
commentId: T:UnityEngine.AudioReverbZone
fullName: UnityEngine.AudioReverbZone
nameWithType: AudioReverbZone
- uid: UnityEngine.AudioRolloffMode
name: AudioRolloffMode
href: AudioRolloffMode.html
commentId: T:UnityEngine.AudioRolloffMode
fullName: UnityEngine.AudioRolloffMode
nameWithType: AudioRolloffMode
- uid: UnityEngine.AudioSettings
name: AudioSettings
href: AudioSettings.html
commentId: T:UnityEngine.AudioSettings
fullName: UnityEngine.AudioSettings
nameWithType: AudioSettings
- uid: UnityEngine.AudioSettings.AudioConfigurationChangeHandler
name: AudioConfigurationChangeHandler
href: AudioSettings.AudioConfigurationChangeHandler.html
commentId: T:UnityEngine.AudioSettings.AudioConfigurationChangeHandler
fullName: UnityEngine.AudioSettings.AudioConfigurationChangeHandler
nameWithType: AudioConfigurationChangeHandler
- uid: UnityEngine.AudioSettings.Mobile
name: Mobile
href: AudioSettings.Mobile.html
commentId: T:UnityEngine.AudioSettings.Mobile
fullName: UnityEngine.AudioSettings.Mobile
nameWithType: Mobile