-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.js
More file actions
1335 lines (1335 loc) · 56.1 KB
/
api.js
File metadata and controls
1335 lines (1335 loc) · 56.1 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
module.exports = {
"EVREye": {
"0": "Eye_Left",
"1": "Eye_Right"
},
"ETextureType": {
"0": "TextureType_DirectX",
"1": "TextureType_OpenGL",
"2": "TextureType_Vulkan",
"3": "TextureType_IOSurface",
"4": "TextureType_DirectX12",
"5": "TextureType_DXGISharedHandle",
"6": "TextureType_Metal",
"-1": "TextureType_Invalid"
},
"EColorSpace": {
"0": "ColorSpace_Auto",
"1": "ColorSpace_Gamma",
"2": "ColorSpace_Linear"
},
"ETrackingResult": {
"1": "TrackingResult_Uninitialized",
"100": "TrackingResult_Calibrating_InProgress",
"101": "TrackingResult_Calibrating_OutOfRange",
"200": "TrackingResult_Running_OK",
"201": "TrackingResult_Running_OutOfRange",
"300": "TrackingResult_Fallback_RotationOnly"
},
"ETrackedDeviceClass": {
"0": "TrackedDeviceClass_Invalid",
"1": "TrackedDeviceClass_HMD",
"2": "TrackedDeviceClass_Controller",
"3": "TrackedDeviceClass_GenericTracker",
"4": "TrackedDeviceClass_TrackingReference",
"5": "TrackedDeviceClass_DisplayRedirect",
"6": "TrackedDeviceClass_Max"
},
"ETrackedControllerRole": {
"0": "TrackedControllerRole_Invalid",
"1": "TrackedControllerRole_LeftHand",
"2": "TrackedControllerRole_RightHand",
"3": "TrackedControllerRole_OptOut",
"4": "TrackedControllerRole_Treadmill",
"5": "TrackedControllerRole_Max"
},
"ETrackingUniverseOrigin": {
"0": "TrackingUniverseSeated",
"1": "TrackingUniverseStanding",
"2": "TrackingUniverseRawAndUncalibrated"
},
"EAdditionalRadioFeatures": {
"0": "AdditionalRadioFeatures_None",
"1": "AdditionalRadioFeatures_HTCLinkBox",
"2": "AdditionalRadioFeatures_InternalDongle",
"4": "AdditionalRadioFeatures_ExternalDongle"
},
"ETrackedDeviceProperty": {
"0": "Prop_Invalid",
"1000": "Prop_TrackingSystemName_String",
"1001": "Prop_ModelNumber_String",
"1002": "Prop_SerialNumber_String",
"1003": "Prop_RenderModelName_String",
"1004": "Prop_WillDriftInYaw_Bool",
"1005": "Prop_ManufacturerName_String",
"1006": "Prop_TrackingFirmwareVersion_String",
"1007": "Prop_HardwareRevision_String",
"1008": "Prop_AllWirelessDongleDescriptions_String",
"1009": "Prop_ConnectedWirelessDongle_String",
"1010": "Prop_DeviceIsWireless_Bool",
"1011": "Prop_DeviceIsCharging_Bool",
"1012": "Prop_DeviceBatteryPercentage_Float",
"1013": "Prop_StatusDisplayTransform_Matrix34",
"1014": "Prop_Firmware_UpdateAvailable_Bool",
"1015": "Prop_Firmware_ManualUpdate_Bool",
"1016": "Prop_Firmware_ManualUpdateURL_String",
"1017": "Prop_HardwareRevision_Uint64",
"1018": "Prop_FirmwareVersion_Uint64",
"1019": "Prop_FPGAVersion_Uint64",
"1020": "Prop_VRCVersion_Uint64",
"1021": "Prop_RadioVersion_Uint64",
"1022": "Prop_DongleVersion_Uint64",
"1023": "Prop_BlockServerShutdown_Bool",
"1024": "Prop_CanUnifyCoordinateSystemWithHmd_Bool",
"1025": "Prop_ContainsProximitySensor_Bool",
"1026": "Prop_DeviceProvidesBatteryStatus_Bool",
"1027": "Prop_DeviceCanPowerOff_Bool",
"1028": "Prop_Firmware_ProgrammingTarget_String",
"1029": "Prop_DeviceClass_Int32",
"1030": "Prop_HasCamera_Bool",
"1031": "Prop_DriverVersion_String",
"1032": "Prop_Firmware_ForceUpdateRequired_Bool",
"1033": "Prop_ViveSystemButtonFixRequired_Bool",
"1034": "Prop_ParentDriver_Uint64",
"1035": "Prop_ResourceRoot_String",
"1036": "Prop_RegisteredDeviceType_String",
"1037": "Prop_InputProfilePath_String",
"1038": "Prop_NeverTracked_Bool",
"1039": "Prop_NumCameras_Int32",
"1040": "Prop_CameraFrameLayout_Int32",
"1041": "Prop_CameraStreamFormat_Int32",
"1042": "Prop_AdditionalDeviceSettingsPath_String",
"1043": "Prop_Identifiable_Bool",
"1044": "Prop_BootloaderVersion_Uint64",
"1045": "Prop_AdditionalSystemReportData_String",
"1046": "Prop_CompositeFirmwareVersion_String",
"2000": "Prop_ReportsTimeSinceVSync_Bool",
"2001": "Prop_SecondsFromVsyncToPhotons_Float",
"2002": "Prop_DisplayFrequency_Float",
"2003": "Prop_UserIpdMeters_Float",
"2004": "Prop_CurrentUniverseId_Uint64",
"2005": "Prop_PreviousUniverseId_Uint64",
"2006": "Prop_DisplayFirmwareVersion_Uint64",
"2007": "Prop_IsOnDesktop_Bool",
"2008": "Prop_DisplayMCType_Int32",
"2009": "Prop_DisplayMCOffset_Float",
"2010": "Prop_DisplayMCScale_Float",
"2011": "Prop_EdidVendorID_Int32",
"2012": "Prop_DisplayMCImageLeft_String",
"2013": "Prop_DisplayMCImageRight_String",
"2014": "Prop_DisplayGCBlackClamp_Float",
"2015": "Prop_EdidProductID_Int32",
"2016": "Prop_CameraToHeadTransform_Matrix34",
"2017": "Prop_DisplayGCType_Int32",
"2018": "Prop_DisplayGCOffset_Float",
"2019": "Prop_DisplayGCScale_Float",
"2020": "Prop_DisplayGCPrescale_Float",
"2021": "Prop_DisplayGCImage_String",
"2022": "Prop_LensCenterLeftU_Float",
"2023": "Prop_LensCenterLeftV_Float",
"2024": "Prop_LensCenterRightU_Float",
"2025": "Prop_LensCenterRightV_Float",
"2026": "Prop_UserHeadToEyeDepthMeters_Float",
"2027": "Prop_CameraFirmwareVersion_Uint64",
"2028": "Prop_CameraFirmwareDescription_String",
"2029": "Prop_DisplayFPGAVersion_Uint64",
"2030": "Prop_DisplayBootloaderVersion_Uint64",
"2031": "Prop_DisplayHardwareVersion_Uint64",
"2032": "Prop_AudioFirmwareVersion_Uint64",
"2033": "Prop_CameraCompatibilityMode_Int32",
"2034": "Prop_ScreenshotHorizontalFieldOfViewDegrees_Float",
"2035": "Prop_ScreenshotVerticalFieldOfViewDegrees_Float",
"2036": "Prop_DisplaySuppressed_Bool",
"2037": "Prop_DisplayAllowNightMode_Bool",
"2038": "Prop_DisplayMCImageWidth_Int32",
"2039": "Prop_DisplayMCImageHeight_Int32",
"2040": "Prop_DisplayMCImageNumChannels_Int32",
"2041": "Prop_DisplayMCImageData_Binary",
"2042": "Prop_SecondsFromPhotonsToVblank_Float",
"2043": "Prop_DriverDirectModeSendsVsyncEvents_Bool",
"2044": "Prop_DisplayDebugMode_Bool",
"2045": "Prop_GraphicsAdapterLuid_Uint64",
"2048": "Prop_DriverProvidedChaperonePath_String",
"2049": "Prop_ExpectedTrackingReferenceCount_Int32",
"2050": "Prop_ExpectedControllerCount_Int32",
"2051": "Prop_NamedIconPathControllerLeftDeviceOff_String",
"2052": "Prop_NamedIconPathControllerRightDeviceOff_String",
"2053": "Prop_NamedIconPathTrackingReferenceDeviceOff_String",
"2054": "Prop_DoNotApplyPrediction_Bool",
"2055": "Prop_CameraToHeadTransforms_Matrix34_Array",
"2056": "Prop_DistortionMeshResolution_Int32",
"2057": "Prop_DriverIsDrawingControllers_Bool",
"2058": "Prop_DriverRequestsApplicationPause_Bool",
"2059": "Prop_DriverRequestsReducedRendering_Bool",
"2060": "Prop_MinimumIpdStepMeters_Float",
"2061": "Prop_AudioBridgeFirmwareVersion_Uint64",
"2062": "Prop_ImageBridgeFirmwareVersion_Uint64",
"2063": "Prop_ImuToHeadTransform_Matrix34",
"2064": "Prop_ImuFactoryGyroBias_Vector3",
"2065": "Prop_ImuFactoryGyroScale_Vector3",
"2066": "Prop_ImuFactoryAccelerometerBias_Vector3",
"2067": "Prop_ImuFactoryAccelerometerScale_Vector3",
"2069": "Prop_ConfigurationIncludesLighthouse20Features_Bool",
"2070": "Prop_AdditionalRadioFeatures_Uint64",
"2071": "Prop_CameraWhiteBalance_Vector4_Array",
"2072": "Prop_CameraDistortionFunction_Int32_Array",
"2073": "Prop_CameraDistortionCoefficients_Float_Array",
"2074": "Prop_ExpectedControllerType_String",
"2080": "Prop_DisplayAvailableFrameRates_Float_Array",
"2081": "Prop_DisplaySupportsMultipleFramerates_Bool",
"2090": "Prop_DashboardLayoutPathName_String",
"2200": "Prop_DriverRequestedMuraCorrectionMode_Int32",
"2201": "Prop_DriverRequestedMuraFeather_InnerLeft_Int32",
"2202": "Prop_DriverRequestedMuraFeather_InnerRight_Int32",
"2203": "Prop_DriverRequestedMuraFeather_InnerTop_Int32",
"2204": "Prop_DriverRequestedMuraFeather_InnerBottom_Int32",
"2205": "Prop_DriverRequestedMuraFeather_OuterLeft_Int32",
"2206": "Prop_DriverRequestedMuraFeather_OuterRight_Int32",
"2207": "Prop_DriverRequestedMuraFeather_OuterTop_Int32",
"2208": "Prop_DriverRequestedMuraFeather_OuterBottom_Int32",
"3000": "Prop_AttachedDeviceId_String",
"3001": "Prop_SupportedButtons_Uint64",
"3002": "Prop_Axis0Type_Int32",
"3003": "Prop_Axis1Type_Int32",
"3004": "Prop_Axis2Type_Int32",
"3005": "Prop_Axis3Type_Int32",
"3006": "Prop_Axis4Type_Int32",
"3007": "Prop_ControllerRoleHint_Int32",
"4000": "Prop_FieldOfViewLeftDegrees_Float",
"4001": "Prop_FieldOfViewRightDegrees_Float",
"4002": "Prop_FieldOfViewTopDegrees_Float",
"4003": "Prop_FieldOfViewBottomDegrees_Float",
"4004": "Prop_TrackingRangeMinimumMeters_Float",
"4005": "Prop_TrackingRangeMaximumMeters_Float",
"4006": "Prop_ModeLabel_String",
"4007": "Prop_CanWirelessIdentify_Bool",
"4008": "Prop_Nonce_Int32",
"5000": "Prop_IconPathName_String",
"5001": "Prop_NamedIconPathDeviceOff_String",
"5002": "Prop_NamedIconPathDeviceSearching_String",
"5003": "Prop_NamedIconPathDeviceSearchingAlert_String",
"5004": "Prop_NamedIconPathDeviceReady_String",
"5005": "Prop_NamedIconPathDeviceReadyAlert_String",
"5006": "Prop_NamedIconPathDeviceNotReady_String",
"5007": "Prop_NamedIconPathDeviceStandby_String",
"5008": "Prop_NamedIconPathDeviceAlertLow_String",
"5100": "Prop_DisplayHiddenArea_Binary_Start",
"5150": "Prop_DisplayHiddenArea_Binary_End",
"5151": "Prop_ParentContainer",
"6000": "Prop_UserConfigPath_String",
"6001": "Prop_InstallPath_String",
"6002": "Prop_HasDisplayComponent_Bool",
"6003": "Prop_HasControllerComponent_Bool",
"6004": "Prop_HasCameraComponent_Bool",
"6005": "Prop_HasDriverDirectModeComponent_Bool",
"6006": "Prop_HasVirtualDisplayComponent_Bool",
"6007": "Prop_HasSpatialAnchorsSupport_Bool",
"7000": "Prop_ControllerType_String",
"7002": "Prop_ControllerHandSelectionPriority_Int32",
"10000": "Prop_VendorSpecific_Reserved_Start",
"10999": "Prop_VendorSpecific_Reserved_End",
"1000000": "Prop_TrackedDeviceProperty_Max"
},
"ETrackedPropertyError": {
"0": "TrackedProp_Success",
"1": "TrackedProp_WrongDataType",
"2": "TrackedProp_WrongDeviceClass",
"3": "TrackedProp_BufferTooSmall",
"4": "TrackedProp_UnknownProperty",
"5": "TrackedProp_InvalidDevice",
"6": "TrackedProp_CouldNotContactServer",
"7": "TrackedProp_ValueNotProvidedByDevice",
"8": "TrackedProp_StringExceedsMaximumLength",
"9": "TrackedProp_NotYetAvailable",
"10": "TrackedProp_PermissionDenied",
"11": "TrackedProp_InvalidOperation",
"12": "TrackedProp_CannotWriteToWildcards",
"13": "TrackedProp_IPCReadFailure"
},
"EVRSubmitFlags": {
"0": "Submit_Default",
"1": "Submit_LensDistortionAlreadyApplied",
"2": "Submit_GlRenderBuffer",
"4": "Submit_Reserved",
"8": "Submit_TextureWithPose",
"16": "Submit_TextureWithDepth"
},
"EVRState": {
"0": "VRState_Off",
"1": "VRState_Searching",
"2": "VRState_Searching_Alert",
"3": "VRState_Ready",
"4": "VRState_Ready_Alert",
"5": "VRState_NotReady",
"6": "VRState_Standby",
"7": "VRState_Ready_Alert_Low",
"-1": "VRState_Undefined"
},
"EVREventType": {
"0": "VREvent_None",
"100": "VREvent_TrackedDeviceActivated",
"101": "VREvent_TrackedDeviceDeactivated",
"102": "VREvent_TrackedDeviceUpdated",
"103": "VREvent_TrackedDeviceUserInteractionStarted",
"104": "VREvent_TrackedDeviceUserInteractionEnded",
"105": "VREvent_IpdChanged",
"106": "VREvent_EnterStandbyMode",
"107": "VREvent_LeaveStandbyMode",
"108": "VREvent_TrackedDeviceRoleChanged",
"109": "VREvent_WatchdogWakeUpRequested",
"110": "VREvent_LensDistortionChanged",
"111": "VREvent_PropertyChanged",
"112": "VREvent_WirelessDisconnect",
"113": "VREvent_WirelessReconnect",
"200": "VREvent_ButtonPress",
"201": "VREvent_ButtonUnpress",
"202": "VREvent_ButtonTouch",
"203": "VREvent_ButtonUntouch",
"250": "VREvent_DualAnalog_Press",
"251": "VREvent_DualAnalog_Unpress",
"252": "VREvent_DualAnalog_Touch",
"253": "VREvent_DualAnalog_Untouch",
"254": "VREvent_DualAnalog_Move",
"255": "VREvent_DualAnalog_ModeSwitch1",
"256": "VREvent_DualAnalog_ModeSwitch2",
"257": "VREvent_DualAnalog_Cancel",
"300": "VREvent_MouseMove",
"301": "VREvent_MouseButtonDown",
"302": "VREvent_MouseButtonUp",
"303": "VREvent_FocusEnter",
"304": "VREvent_FocusLeave",
"305": "VREvent_ScrollDiscrete",
"306": "VREvent_TouchPadMove",
"307": "VREvent_OverlayFocusChanged",
"308": "VREvent_ReloadOverlays",
"309": "VREvent_ScrollSmooth",
"400": "VREvent_InputFocusCaptured",
"401": "VREvent_InputFocusReleased",
"402": "VREvent_SceneFocusLost",
"403": "VREvent_SceneFocusGained",
"404": "VREvent_SceneApplicationChanged",
"405": "VREvent_SceneFocusChanged",
"406": "VREvent_InputFocusChanged",
"407": "VREvent_SceneApplicationSecondaryRenderingStarted",
"408": "VREvent_SceneApplicationUsingWrongGraphicsAdapter",
"409": "VREvent_ActionBindingReloaded",
"410": "VREvent_HideRenderModels",
"411": "VREvent_ShowRenderModels",
"420": "VREvent_ConsoleOpened",
"421": "VREvent_ConsoleClosed",
"500": "VREvent_OverlayShown",
"501": "VREvent_OverlayHidden",
"502": "VREvent_DashboardActivated",
"503": "VREvent_DashboardDeactivated",
"505": "VREvent_DashboardRequested",
"506": "VREvent_ResetDashboard",
"507": "VREvent_RenderToast",
"508": "VREvent_ImageLoaded",
"509": "VREvent_ShowKeyboard",
"510": "VREvent_HideKeyboard",
"511": "VREvent_OverlayGamepadFocusGained",
"512": "VREvent_OverlayGamepadFocusLost",
"513": "VREvent_OverlaySharedTextureChanged",
"516": "VREvent_ScreenshotTriggered",
"517": "VREvent_ImageFailed",
"518": "VREvent_DashboardOverlayCreated",
"519": "VREvent_SwitchGamepadFocus",
"520": "VREvent_RequestScreenshot",
"521": "VREvent_ScreenshotTaken",
"522": "VREvent_ScreenshotFailed",
"523": "VREvent_SubmitScreenshotToDashboard",
"524": "VREvent_ScreenshotProgressToDashboard",
"525": "VREvent_PrimaryDashboardDeviceChanged",
"526": "VREvent_RoomViewShown",
"527": "VREvent_RoomViewHidden",
"528": "VREvent_ShowUI",
"529": "VREvent_ShowDevTools",
"600": "VREvent_Notification_Shown",
"601": "VREvent_Notification_Hidden",
"602": "VREvent_Notification_BeginInteraction",
"603": "VREvent_Notification_Destroyed",
"700": "VREvent_Quit",
"701": "VREvent_ProcessQuit",
"702": "VREvent_QuitAborted_UserPrompt",
"703": "VREvent_QuitAcknowledged",
"704": "VREvent_DriverRequestedQuit",
"705": "VREvent_RestartRequested",
"800": "VREvent_ChaperoneDataHasChanged",
"801": "VREvent_ChaperoneUniverseHasChanged",
"802": "VREvent_ChaperoneTempDataHasChanged",
"803": "VREvent_ChaperoneSettingsHaveChanged",
"804": "VREvent_SeatedZeroPoseReset",
"805": "VREvent_ChaperoneFlushCache",
"806": "VREvent_ChaperoneRoomSetupStarting",
"807": "VREvent_ChaperoneRoomSetupFinished",
"820": "VREvent_AudioSettingsHaveChanged",
"850": "VREvent_BackgroundSettingHasChanged",
"851": "VREvent_CameraSettingsHaveChanged",
"852": "VREvent_ReprojectionSettingHasChanged",
"853": "VREvent_ModelSkinSettingsHaveChanged",
"854": "VREvent_EnvironmentSettingsHaveChanged",
"855": "VREvent_PowerSettingsHaveChanged",
"856": "VREvent_EnableHomeAppSettingsHaveChanged",
"857": "VREvent_SteamVRSectionSettingChanged",
"858": "VREvent_LighthouseSectionSettingChanged",
"859": "VREvent_NullSectionSettingChanged",
"860": "VREvent_UserInterfaceSectionSettingChanged",
"861": "VREvent_NotificationsSectionSettingChanged",
"862": "VREvent_KeyboardSectionSettingChanged",
"863": "VREvent_PerfSectionSettingChanged",
"864": "VREvent_DashboardSectionSettingChanged",
"865": "VREvent_WebInterfaceSectionSettingChanged",
"866": "VREvent_TrackersSectionSettingChanged",
"867": "VREvent_LastKnownSectionSettingChanged",
"868": "VREvent_DismissedWarningsSectionSettingChanged",
"900": "VREvent_StatusUpdate",
"950": "VREvent_WebInterface_InstallDriverCompleted",
"1000": "VREvent_MCImageUpdated",
"1100": "VREvent_FirmwareUpdateStarted",
"1101": "VREvent_FirmwareUpdateFinished",
"1200": "VREvent_KeyboardClosed",
"1201": "VREvent_KeyboardCharInput",
"1202": "VREvent_KeyboardDone",
"1300": "VREvent_ApplicationTransitionStarted",
"1301": "VREvent_ApplicationTransitionAborted",
"1302": "VREvent_ApplicationTransitionNewAppStarted",
"1303": "VREvent_ApplicationListUpdated",
"1304": "VREvent_ApplicationMimeTypeLoad",
"1305": "VREvent_ApplicationTransitionNewAppLaunchComplete",
"1306": "VREvent_ProcessConnected",
"1307": "VREvent_ProcessDisconnected",
"1400": "VREvent_Compositor_MirrorWindowShown",
"1401": "VREvent_Compositor_MirrorWindowHidden",
"1410": "VREvent_Compositor_ChaperoneBoundsShown",
"1411": "VREvent_Compositor_ChaperoneBoundsHidden",
"1412": "VREvent_Compositor_DisplayDisconnected",
"1413": "VREvent_Compositor_DisplayReconnected",
"1414": "VREvent_Compositor_HDCPError",
"1415": "VREvent_Compositor_ApplicationNotResponding",
"1416": "VREvent_Compositor_ApplicationResumed",
"1417": "VREvent_Compositor_OutOfVideoMemory",
"1500": "VREvent_TrackedCamera_StartVideoStream",
"1501": "VREvent_TrackedCamera_StopVideoStream",
"1502": "VREvent_TrackedCamera_PauseVideoStream",
"1503": "VREvent_TrackedCamera_ResumeVideoStream",
"1550": "VREvent_TrackedCamera_EditingSurface",
"1600": "VREvent_PerformanceTest_EnableCapture",
"1601": "VREvent_PerformanceTest_DisableCapture",
"1602": "VREvent_PerformanceTest_FidelityLevel",
"1650": "VREvent_MessageOverlay_Closed",
"1651": "VREvent_MessageOverlayCloseRequested",
"1700": "VREvent_Input_HapticVibration",
"1701": "VREvent_Input_BindingLoadFailed",
"1702": "VREvent_Input_BindingLoadSuccessful",
"1703": "VREvent_Input_ActionManifestReloaded",
"1704": "VREvent_Input_ActionManifestLoadFailed",
"1705": "VREvent_Input_ProgressUpdate",
"1706": "VREvent_Input_TrackerActivated",
"1707": "VREvent_Input_BindingsUpdated",
"1800": "VREvent_SpatialAnchors_PoseUpdated",
"1801": "VREvent_SpatialAnchors_DescriptorUpdated",
"1802": "VREvent_SpatialAnchors_RequestPoseUpdate",
"1803": "VREvent_SpatialAnchors_RequestDescriptorUpdate",
"1900": "VREvent_SystemReport_Started",
"10000": "VREvent_VendorSpecific_Reserved_Start",
"19999": "VREvent_VendorSpecific_Reserved_End"
},
"EDeviceActivityLevel": {
"0": "k_EDeviceActivityLevel_Idle",
"1": "k_EDeviceActivityLevel_UserInteraction",
"2": "k_EDeviceActivityLevel_UserInteraction_Timeout",
"3": "k_EDeviceActivityLevel_Standby",
"-1": "k_EDeviceActivityLevel_Unknown"
},
"EVRButtonId": {
"0": "k_EButton_System",
"1": "k_EButton_IndexController_B",
"2": "k_EButton_IndexController_A",
"3": "k_EButton_DPad_Left",
"4": "k_EButton_DPad_Up",
"5": "k_EButton_DPad_Right",
"6": "k_EButton_DPad_Down",
"7": "k_EButton_A",
"31": "k_EButton_ProximitySensor",
"32": "k_EButton_SteamVR_Touchpad",
"33": "k_EButton_SteamVR_Trigger",
"34": "k_EButton_Axis2",
"35": "k_EButton_IndexController_JoyStick",
"36": "k_EButton_Axis4",
"64": "k_EButton_Max"
},
"EVRMouseButton": {
"1": "VRMouseButton_Left",
"2": "VRMouseButton_Right",
"4": "VRMouseButton_Middle"
},
"EDualAnalogWhich": {
"0": "k_EDualAnalog_Left",
"1": "k_EDualAnalog_Right"
},
"EShowUIType": {
"0": "ShowUI_ControllerBinding",
"1": "ShowUI_ManageTrackers",
"3": "ShowUI_Pairing",
"4": "ShowUI_Settings"
},
"EHDCPError": {
"0": "HDCPError_None",
"1": "HDCPError_LinkLost",
"2": "HDCPError_Tampered",
"3": "HDCPError_DeviceRevoked",
"4": "HDCPError_Unknown"
},
"EVRInputError": {
"0": "VRInputError_None",
"1": "VRInputError_NameNotFound",
"2": "VRInputError_WrongType",
"3": "VRInputError_InvalidHandle",
"4": "VRInputError_InvalidParam",
"5": "VRInputError_NoSteam",
"6": "VRInputError_MaxCapacityReached",
"7": "VRInputError_IPCError",
"8": "VRInputError_NoActiveActionSet",
"9": "VRInputError_InvalidDevice",
"10": "VRInputError_InvalidSkeleton",
"11": "VRInputError_InvalidBoneCount",
"12": "VRInputError_InvalidCompressedData",
"13": "VRInputError_NoData",
"14": "VRInputError_BufferTooSmall",
"15": "VRInputError_MismatchedActionManifest",
"16": "VRInputError_MissingSkeletonData",
"17": "VRInputError_InvalidBoneIndex"
},
"EVRSpatialAnchorError": {
"0": "VRSpatialAnchorError_Success",
"1": "VRSpatialAnchorError_Internal",
"2": "VRSpatialAnchorError_UnknownHandle",
"3": "VRSpatialAnchorError_ArrayTooSmall",
"4": "VRSpatialAnchorError_InvalidDescriptorChar",
"5": "VRSpatialAnchorError_NotYetAvailable",
"6": "VRSpatialAnchorError_NotAvailableInThisUniverse",
"7": "VRSpatialAnchorError_PermanentlyUnavailable",
"8": "VRSpatialAnchorError_WrongDriver",
"9": "VRSpatialAnchorError_DescriptorTooLong",
"10": "VRSpatialAnchorError_Unknown",
"11": "VRSpatialAnchorError_NoRoomCalibration",
"12": "VRSpatialAnchorError_InvalidArgument",
"13": "VRSpatialAnchorError_UnknownDriver"
},
"EHiddenAreaMeshType": {
"0": "k_eHiddenAreaMesh_Standard",
"1": "k_eHiddenAreaMesh_Inverse",
"2": "k_eHiddenAreaMesh_LineLoop",
"3": "k_eHiddenAreaMesh_Max"
},
"EVRControllerAxisType": {
"0": "k_eControllerAxis_None",
"1": "k_eControllerAxis_TrackPad",
"2": "k_eControllerAxis_Joystick",
"3": "k_eControllerAxis_Trigger"
},
"EVRControllerEventOutputType": {
"0": "ControllerEventOutput_OSEvents",
"1": "ControllerEventOutput_VREvents"
},
"ECollisionBoundsStyle": {
"0": "COLLISION_BOUNDS_STYLE_BEGINNER",
"1": "COLLISION_BOUNDS_STYLE_INTERMEDIATE",
"2": "COLLISION_BOUNDS_STYLE_SQUARES",
"3": "COLLISION_BOUNDS_STYLE_ADVANCED",
"4": "COLLISION_BOUNDS_STYLE_NONE",
"5": "COLLISION_BOUNDS_STYLE_COUNT"
},
"EVROverlayError": {
"0": "VROverlayError_None",
"10": "VROverlayError_UnknownOverlay",
"11": "VROverlayError_InvalidHandle",
"12": "VROverlayError_PermissionDenied",
"13": "VROverlayError_OverlayLimitExceeded",
"14": "VROverlayError_WrongVisibilityType",
"15": "VROverlayError_KeyTooLong",
"16": "VROverlayError_NameTooLong",
"17": "VROverlayError_KeyInUse",
"18": "VROverlayError_WrongTransformType",
"19": "VROverlayError_InvalidTrackedDevice",
"20": "VROverlayError_InvalidParameter",
"21": "VROverlayError_ThumbnailCantBeDestroyed",
"22": "VROverlayError_ArrayTooSmall",
"23": "VROverlayError_RequestFailed",
"24": "VROverlayError_InvalidTexture",
"25": "VROverlayError_UnableToLoadFile",
"26": "VROverlayError_KeyboardAlreadyInUse",
"27": "VROverlayError_NoNeighbor",
"29": "VROverlayError_TooManyMaskPrimitives",
"30": "VROverlayError_BadMaskPrimitive",
"31": "VROverlayError_TextureAlreadyLocked",
"32": "VROverlayError_TextureLockCapacityReached",
"33": "VROverlayError_TextureNotLocked"
},
"EVRApplicationType": {
"0": "VRApplication_Other",
"1": "VRApplication_Scene",
"2": "VRApplication_Overlay",
"3": "VRApplication_Background",
"4": "VRApplication_Utility",
"5": "VRApplication_VRMonitor",
"6": "VRApplication_SteamWatchdog",
"7": "VRApplication_Bootstrapper",
"8": "VRApplication_WebHelper",
"9": "VRApplication_Max"
},
"EVRFirmwareError": {
"0": "VRFirmwareError_None",
"1": "VRFirmwareError_Success",
"2": "VRFirmwareError_Fail"
},
"EVRNotificationError": {
"0": "VRNotificationError_OK",
"100": "VRNotificationError_InvalidNotificationId",
"101": "VRNotificationError_NotificationQueueFull",
"102": "VRNotificationError_InvalidOverlayHandle",
"103": "VRNotificationError_SystemWithUserValueAlreadyExists"
},
"EVRSkeletalMotionRange": {
"0": "VRSkeletalMotionRange_WithController",
"1": "VRSkeletalMotionRange_WithoutController"
},
"EVRSkeletalTrackingLevel": {
"0": "VRSkeletalTracking_Estimated",
"1": "VRSkeletalTracking_Partial",
"2": "VRSkeletalTrackingLevel_Max",
"3": "VRSkeletalTrackingLevel_Count"
},
"EVRInitError": {
"0": "VRInitError_None",
"1": "VRInitError_Unknown",
"100": "VRInitError_Init_InstallationNotFound",
"101": "VRInitError_Init_InstallationCorrupt",
"102": "VRInitError_Init_VRClientDLLNotFound",
"103": "VRInitError_Init_FileNotFound",
"104": "VRInitError_Init_FactoryNotFound",
"105": "VRInitError_Init_InterfaceNotFound",
"106": "VRInitError_Init_InvalidInterface",
"107": "VRInitError_Init_UserConfigDirectoryInvalid",
"108": "VRInitError_Init_HmdNotFound",
"109": "VRInitError_Init_NotInitialized",
"110": "VRInitError_Init_PathRegistryNotFound",
"111": "VRInitError_Init_NoConfigPath",
"112": "VRInitError_Init_NoLogPath",
"113": "VRInitError_Init_PathRegistryNotWritable",
"114": "VRInitError_Init_AppInfoInitFailed",
"115": "VRInitError_Init_Retry",
"116": "VRInitError_Init_InitCanceledByUser",
"117": "VRInitError_Init_AnotherAppLaunching",
"118": "VRInitError_Init_SettingsInitFailed",
"119": "VRInitError_Init_ShuttingDown",
"120": "VRInitError_Init_TooManyObjects",
"121": "VRInitError_Init_NoServerForBackgroundApp",
"122": "VRInitError_Init_NotSupportedWithCompositor",
"123": "VRInitError_Init_NotAvailableToUtilityApps",
"124": "VRInitError_Init_Internal",
"125": "VRInitError_Init_HmdDriverIdIsNone",
"126": "VRInitError_Init_HmdNotFoundPresenceFailed",
"127": "VRInitError_Init_VRMonitorNotFound",
"128": "VRInitError_Init_VRMonitorStartupFailed",
"129": "VRInitError_Init_LowPowerWatchdogNotSupported",
"130": "VRInitError_Init_InvalidApplicationType",
"131": "VRInitError_Init_NotAvailableToWatchdogApps",
"132": "VRInitError_Init_WatchdogDisabledInSettings",
"133": "VRInitError_Init_VRDashboardNotFound",
"134": "VRInitError_Init_VRDashboardStartupFailed",
"135": "VRInitError_Init_VRHomeNotFound",
"136": "VRInitError_Init_VRHomeStartupFailed",
"137": "VRInitError_Init_RebootingBusy",
"138": "VRInitError_Init_FirmwareUpdateBusy",
"139": "VRInitError_Init_FirmwareRecoveryBusy",
"140": "VRInitError_Init_USBServiceBusy",
"141": "VRInitError_Init_VRWebHelperStartupFailed",
"142": "VRInitError_Init_TrackerManagerInitFailed",
"143": "VRInitError_Init_AlreadyRunning",
"144": "VRInitError_Init_FailedForVrMonitor",
"200": "VRInitError_Driver_Failed",
"201": "VRInitError_Driver_Unknown",
"202": "VRInitError_Driver_HmdUnknown",
"203": "VRInitError_Driver_NotLoaded",
"204": "VRInitError_Driver_RuntimeOutOfDate",
"205": "VRInitError_Driver_HmdInUse",
"206": "VRInitError_Driver_NotCalibrated",
"207": "VRInitError_Driver_CalibrationInvalid",
"208": "VRInitError_Driver_HmdDisplayNotFound",
"209": "VRInitError_Driver_TrackedDeviceInterfaceUnknown",
"211": "VRInitError_Driver_HmdDriverIdOutOfBounds",
"212": "VRInitError_Driver_HmdDisplayMirrored",
"213": "VRInitError_Driver_HmdDisplayNotFoundLaptop",
"300": "VRInitError_IPC_ServerInitFailed",
"301": "VRInitError_IPC_ConnectFailed",
"302": "VRInitError_IPC_SharedStateInitFailed",
"303": "VRInitError_IPC_CompositorInitFailed",
"304": "VRInitError_IPC_MutexInitFailed",
"305": "VRInitError_IPC_Failed",
"306": "VRInitError_IPC_CompositorConnectFailed",
"307": "VRInitError_IPC_CompositorInvalidConnectResponse",
"308": "VRInitError_IPC_ConnectFailedAfterMultipleAttempts",
"400": "VRInitError_Compositor_Failed",
"401": "VRInitError_Compositor_D3D11HardwareRequired",
"402": "VRInitError_Compositor_FirmwareRequiresUpdate",
"403": "VRInitError_Compositor_OverlayInitFailed",
"404": "VRInitError_Compositor_ScreenshotsInitFailed",
"405": "VRInitError_Compositor_UnableToCreateDevice",
"406": "VRInitError_Compositor_SharedStateIsNull",
"407": "VRInitError_Compositor_NotificationManagerIsNull",
"408": "VRInitError_Compositor_ResourceManagerClientIsNull",
"409": "VRInitError_Compositor_MessageOverlaySharedStateInitFailure",
"410": "VRInitError_Compositor_PropertiesInterfaceIsNull",
"411": "VRInitError_Compositor_CreateFullscreenWindowFailed",
"412": "VRInitError_Compositor_SettingsInterfaceIsNull",
"413": "VRInitError_Compositor_FailedToShowWindow",
"414": "VRInitError_Compositor_DistortInterfaceIsNull",
"415": "VRInitError_Compositor_DisplayFrequencyFailure",
"416": "VRInitError_Compositor_RendererInitializationFailed",
"417": "VRInitError_Compositor_DXGIFactoryInterfaceIsNull",
"418": "VRInitError_Compositor_DXGIFactoryCreateFailed",
"419": "VRInitError_Compositor_DXGIFactoryQueryFailed",
"420": "VRInitError_Compositor_InvalidAdapterDesktop",
"421": "VRInitError_Compositor_InvalidHmdAttachment",
"422": "VRInitError_Compositor_InvalidOutputDesktop",
"423": "VRInitError_Compositor_InvalidDeviceProvided",
"424": "VRInitError_Compositor_D3D11RendererInitializationFailed",
"425": "VRInitError_Compositor_FailedToFindDisplayMode",
"426": "VRInitError_Compositor_FailedToCreateSwapChain",
"427": "VRInitError_Compositor_FailedToGetBackBuffer",
"428": "VRInitError_Compositor_FailedToCreateRenderTarget",
"429": "VRInitError_Compositor_FailedToCreateDXGI2SwapChain",
"430": "VRInitError_Compositor_FailedtoGetDXGI2BackBuffer",
"431": "VRInitError_Compositor_FailedToCreateDXGI2RenderTarget",
"432": "VRInitError_Compositor_FailedToGetDXGIDeviceInterface",
"433": "VRInitError_Compositor_SelectDisplayMode",
"434": "VRInitError_Compositor_FailedToCreateNvAPIRenderTargets",
"435": "VRInitError_Compositor_NvAPISetDisplayMode",
"436": "VRInitError_Compositor_FailedToCreateDirectModeDisplay",
"437": "VRInitError_Compositor_InvalidHmdPropertyContainer",
"438": "VRInitError_Compositor_UpdateDisplayFrequency",
"439": "VRInitError_Compositor_CreateRasterizerState",
"440": "VRInitError_Compositor_CreateWireframeRasterizerState",
"441": "VRInitError_Compositor_CreateSamplerState",
"442": "VRInitError_Compositor_CreateClampToBorderSamplerState",
"443": "VRInitError_Compositor_CreateAnisoSamplerState",
"444": "VRInitError_Compositor_CreateOverlaySamplerState",
"445": "VRInitError_Compositor_CreatePanoramaSamplerState",
"446": "VRInitError_Compositor_CreateFontSamplerState",
"447": "VRInitError_Compositor_CreateNoBlendState",
"448": "VRInitError_Compositor_CreateBlendState",
"449": "VRInitError_Compositor_CreateAlphaBlendState",
"450": "VRInitError_Compositor_CreateBlendStateMaskR",
"451": "VRInitError_Compositor_CreateBlendStateMaskG",
"452": "VRInitError_Compositor_CreateBlendStateMaskB",
"453": "VRInitError_Compositor_CreateDepthStencilState",
"454": "VRInitError_Compositor_CreateDepthStencilStateNoWrite",
"455": "VRInitError_Compositor_CreateDepthStencilStateNoDepth",
"456": "VRInitError_Compositor_CreateFlushTexture",
"457": "VRInitError_Compositor_CreateDistortionSurfaces",
"458": "VRInitError_Compositor_CreateConstantBuffer",
"459": "VRInitError_Compositor_CreateHmdPoseConstantBuffer",
"460": "VRInitError_Compositor_CreateHmdPoseStagingConstantBuffer",
"461": "VRInitError_Compositor_CreateSharedFrameInfoConstantBuffer",
"462": "VRInitError_Compositor_CreateOverlayConstantBuffer",
"463": "VRInitError_Compositor_CreateSceneTextureIndexConstantBuffer",
"464": "VRInitError_Compositor_CreateReadableSceneTextureIndexConstantBuffer",
"465": "VRInitError_Compositor_CreateLayerGraphicsTextureIndexConstantBuffer",
"466": "VRInitError_Compositor_CreateLayerComputeTextureIndexConstantBuffer",
"467": "VRInitError_Compositor_CreateLayerComputeSceneTextureIndexConstantBuffer",
"468": "VRInitError_Compositor_CreateComputeHmdPoseConstantBuffer",
"469": "VRInitError_Compositor_CreateGeomConstantBuffer",
"470": "VRInitError_Compositor_CreatePanelMaskConstantBuffer",
"471": "VRInitError_Compositor_CreatePixelSimUBO",
"472": "VRInitError_Compositor_CreateMSAARenderTextures",
"473": "VRInitError_Compositor_CreateResolveRenderTextures",
"474": "VRInitError_Compositor_CreateComputeResolveRenderTextures",
"475": "VRInitError_Compositor_CreateDriverDirectModeResolveTextures",
"476": "VRInitError_Compositor_OpenDriverDirectModeResolveTextures",
"477": "VRInitError_Compositor_CreateFallbackSyncTexture",
"478": "VRInitError_Compositor_ShareFallbackSyncTexture",
"479": "VRInitError_Compositor_CreateOverlayIndexBuffer",
"480": "VRInitError_Compositor_CreateOverlayVertextBuffer",
"481": "VRInitError_Compositor_CreateTextVertexBuffer",
"482": "VRInitError_Compositor_CreateTextIndexBuffer",
"483": "VRInitError_Compositor_CreateMirrorTextures",
"484": "VRInitError_Compositor_CreateLastFrameRenderTexture",
"1000": "VRInitError_VendorSpecific_UnableToConnectToOculusRuntime",
"1001": "VRInitError_VendorSpecific_WindowsNotInDevMode",
"1101": "VRInitError_VendorSpecific_HmdFound_CantOpenDevice",
"1102": "VRInitError_VendorSpecific_HmdFound_UnableToRequestConfigStart",
"1103": "VRInitError_VendorSpecific_HmdFound_NoStoredConfig",
"1104": "VRInitError_VendorSpecific_HmdFound_ConfigTooBig",
"1105": "VRInitError_VendorSpecific_HmdFound_ConfigTooSmall",
"1106": "VRInitError_VendorSpecific_HmdFound_UnableToInitZLib",
"1107": "VRInitError_VendorSpecific_HmdFound_CantReadFirmwareVersion",
"1108": "VRInitError_VendorSpecific_HmdFound_UnableToSendUserDataStart",
"1109": "VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataStart",
"1110": "VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataNext",
"1111": "VRInitError_VendorSpecific_HmdFound_UserDataAddressRange",
"1112": "VRInitError_VendorSpecific_HmdFound_UserDataError",
"1113": "VRInitError_VendorSpecific_HmdFound_ConfigFailedSanityCheck",
"2000": "VRInitError_Steam_SteamInstallationNotFound",
"2001": "VRInitError_LastError"
},
"EVRScreenshotType": {
"0": "VRScreenshotType_None",
"1": "VRScreenshotType_Mono",
"2": "VRScreenshotType_Stereo",
"3": "VRScreenshotType_Cubemap",
"4": "VRScreenshotType_MonoPanorama",
"5": "VRScreenshotType_StereoPanorama"
},
"EVRScreenshotPropertyFilenames": {
"0": "VRScreenshotPropertyFilenames_Preview",
"1": "VRScreenshotPropertyFilenames_VR"
},
"EVRTrackedCameraError": {
"0": "VRTrackedCameraError_None",
"100": "VRTrackedCameraError_OperationFailed",
"101": "VRTrackedCameraError_InvalidHandle",
"102": "VRTrackedCameraError_InvalidFrameHeaderVersion",
"103": "VRTrackedCameraError_OutOfHandles",
"104": "VRTrackedCameraError_IPCFailure",
"105": "VRTrackedCameraError_NotSupportedForThisDevice",
"106": "VRTrackedCameraError_SharedMemoryFailure",
"107": "VRTrackedCameraError_FrameBufferingFailure",
"108": "VRTrackedCameraError_StreamSetupFailure",
"109": "VRTrackedCameraError_InvalidGLTextureId",
"110": "VRTrackedCameraError_InvalidSharedTextureHandle",
"111": "VRTrackedCameraError_FailedToGetGLTextureId",
"112": "VRTrackedCameraError_SharedTextureFailure",
"113": "VRTrackedCameraError_NoFrameAvailable",
"114": "VRTrackedCameraError_InvalidArgument",
"115": "VRTrackedCameraError_InvalidFrameBufferSize"
},
"EVRTrackedCameraFrameLayout": {
"1": "EVRTrackedCameraFrameLayout_Mono",
"2": "EVRTrackedCameraFrameLayout_Stereo",
"16": "EVRTrackedCameraFrameLayout_VerticalLayout",
"32": "EVRTrackedCameraFrameLayout_HorizontalLayout"
},
"EVRTrackedCameraFrameType": {
"0": "VRTrackedCameraFrameType_Distorted",
"1": "VRTrackedCameraFrameType_Undistorted",
"2": "VRTrackedCameraFrameType_MaximumUndistorted",
"3": "MAX_CAMERA_FRAME_TYPES"
},
"EVRDistortionFunctionType": {
"0": "VRDistortionFunctionType_None",
"1": "VRDistortionFunctionType_FTheta",
"2": "VRDistortionFunctionType_Extended_FTheta",
"3": "MAX_DISTORTION_FUNCTION_TYPES"
},
"EVSync": {
"0": "VSync_None",
"1": "VSync_WaitRender",
"2": "VSync_NoWaitRender"
},
"EVRMuraCorrectionMode": {
"0": "EVRMuraCorrectionMode_Default",
"1": "EVRMuraCorrectionMode_NoCorrection"
},
"Imu_OffScaleFlags": {
"1": "OffScale_AccelX",
"2": "OffScale_AccelY",
"4": "OffScale_AccelZ",
"8": "OffScale_GyroX",
"16": "OffScale_GyroY",
"32": "OffScale_GyroZ"
},
"EVRApplicationError": {
"0": "VRApplicationError_None",
"100": "VRApplicationError_AppKeyAlreadyExists",
"101": "VRApplicationError_NoManifest",
"102": "VRApplicationError_NoApplication",
"103": "VRApplicationError_InvalidIndex",
"104": "VRApplicationError_UnknownApplication",
"105": "VRApplicationError_IPCFailed",
"106": "VRApplicationError_ApplicationAlreadyRunning",
"107": "VRApplicationError_InvalidManifest",
"108": "VRApplicationError_InvalidApplication",
"109": "VRApplicationError_LaunchFailed",
"110": "VRApplicationError_ApplicationAlreadyStarting",
"111": "VRApplicationError_LaunchInProgress",
"112": "VRApplicationError_OldApplicationQuitting",
"113": "VRApplicationError_TransitionAborted",
"114": "VRApplicationError_IsTemplate",
"115": "VRApplicationError_SteamVRIsExiting",
"200": "VRApplicationError_BufferTooSmall",
"201": "VRApplicationError_PropertyNotSet",
"202": "VRApplicationError_UnknownProperty",
"203": "VRApplicationError_InvalidParameter"
},
"EVRApplicationProperty": {
"0": "VRApplicationProperty_Name_String",
"11": "VRApplicationProperty_LaunchType_String",
"12": "VRApplicationProperty_WorkingDirectory_String",
"13": "VRApplicationProperty_BinaryPath_String",
"14": "VRApplicationProperty_Arguments_String",
"15": "VRApplicationProperty_URL_String",
"50": "VRApplicationProperty_Description_String",
"51": "VRApplicationProperty_NewsURL_String",
"52": "VRApplicationProperty_ImagePath_String",
"53": "VRApplicationProperty_Source_String",
"54": "VRApplicationProperty_ActionManifestURL_String",
"60": "VRApplicationProperty_IsDashboardOverlay_Bool",
"61": "VRApplicationProperty_IsTemplate_Bool",
"62": "VRApplicationProperty_IsInstanced_Bool",
"63": "VRApplicationProperty_IsInternal_Bool",
"64": "VRApplicationProperty_WantsCompositorPauseInStandby_Bool",
"70": "VRApplicationProperty_LastLaunchTime_Uint64"
},
"EVRApplicationTransitionState": {
"0": "VRApplicationTransition_None",
"10": "VRApplicationTransition_OldAppQuitSent",
"11": "VRApplicationTransition_WaitingForExternalLaunch",
"20": "VRApplicationTransition_NewAppLaunched"
},
"ChaperoneCalibrationState": {
"1": "ChaperoneCalibrationState_OK",
"100": "ChaperoneCalibrationState_Warning",
"101": "ChaperoneCalibrationState_Warning_BaseStationMayHaveMoved",
"102": "ChaperoneCalibrationState_Warning_BaseStationRemoved",
"103": "ChaperoneCalibrationState_Warning_SeatedBoundsInvalid",
"200": "ChaperoneCalibrationState_Error",
"201": "ChaperoneCalibrationState_Error_BaseStationUninitialized",
"202": "ChaperoneCalibrationState_Error_BaseStationConflict",
"203": "ChaperoneCalibrationState_Error_PlayAreaInvalid",
"204": "ChaperoneCalibrationState_Error_CollisionBoundsInvalid"
},
"EChaperoneConfigFile": {
"1": "EChaperoneConfigFile_Live",
"2": "EChaperoneConfigFile_Temp"
},
"EChaperoneImportFlags": {
"1": "EChaperoneImport_BoundsOnly"
},
"EVRCompositorError": {
"0": "VRCompositorError_None",
"1": "VRCompositorError_RequestFailed",
"100": "VRCompositorError_IncompatibleVersion",
"101": "VRCompositorError_DoNotHaveFocus",
"102": "VRCompositorError_InvalidTexture",
"103": "VRCompositorError_IsNotSceneApplication",
"104": "VRCompositorError_TextureIsOnWrongDevice",
"105": "VRCompositorError_TextureUsesUnsupportedFormat",
"106": "VRCompositorError_SharedTexturesNotSupported",
"107": "VRCompositorError_IndexOutOfRange",
"108": "VRCompositorError_AlreadySubmitted",
"109": "VRCompositorError_InvalidBounds"
},
"EVRCompositorTimingMode": {
"0": "VRCompositorTimingMode_Implicit",
"1": "VRCompositorTimingMode_Explicit_RuntimePerformsPostPresentHandoff",
"2": "VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff"
},
"VROverlayInputMethod": {
"0": "VROverlayInputMethod_None",
"1": "VROverlayInputMethod_Mouse",
"2": "VROverlayInputMethod_DualAnalog"
},
"VROverlayTransformType": {
"0": "VROverlayTransform_Absolute",
"1": "VROverlayTransform_TrackedDeviceRelative",
"2": "VROverlayTransform_SystemOverlay",
"3": "VROverlayTransform_TrackedComponent"
},
"VROverlayFlags": {
"0": "VROverlayFlags_None",
"1": "VROverlayFlags_Curved",
"2": "VROverlayFlags_RGSS4X",
"3": "VROverlayFlags_NoDashboardTab",
"4": "VROverlayFlags_AcceptsGamepadEvents",
"5": "VROverlayFlags_ShowGamepadFocus",
"6": "VROverlayFlags_SendVRDiscreteScrollEvents",
"7": "VROverlayFlags_SendVRTouchpadEvents",
"8": "VROverlayFlags_ShowTouchPadScrollWheel",
"9": "VROverlayFlags_TransferOwnershipToInternalProcess",
"10": "VROverlayFlags_SideBySide_Parallel",
"11": "VROverlayFlags_SideBySide_Crossed",
"12": "VROverlayFlags_Panorama",
"13": "VROverlayFlags_StereoPanorama",
"14": "VROverlayFlags_SortWithNonSceneOverlays",
"15": "VROverlayFlags_VisibleInDashboard",
"16": "VROverlayFlags_MakeOverlaysInteractiveIfVisible",
"17": "VROverlayFlags_SendVRSmoothScrollEvents"
},
"VRMessageOverlayResponse": {
"0": "VRMessageOverlayResponse_ButtonPress_0",
"1": "VRMessageOverlayResponse_ButtonPress_1",
"2": "VRMessageOverlayResponse_ButtonPress_2",
"3": "VRMessageOverlayResponse_ButtonPress_3",
"4": "VRMessageOverlayResponse_CouldntFindSystemOverlay",
"5": "VRMessageOverlayResponse_CouldntFindOrCreateClientOverlay",
"6": "VRMessageOverlayResponse_ApplicationQuit"
},
"EGamepadTextInputMode": {
"0": "k_EGamepadTextInputModeNormal",
"1": "k_EGamepadTextInputModePassword",
"2": "k_EGamepadTextInputModeSubmit"
},
"EGamepadTextInputLineMode": {
"0": "k_EGamepadTextInputLineModeSingleLine",
"1": "k_EGamepadTextInputLineModeMultipleLines"
},
"EOverlayDirection": {
"0": "OverlayDirection_Up",
"1": "OverlayDirection_Down",
"2": "OverlayDirection_Left",
"3": "OverlayDirection_Right",
"4": "OverlayDirection_Count"
},
"EVROverlayIntersectionMaskPrimitiveType": {
"0": "OverlayIntersectionPrimitiveType_Rectangle",
"1": "OverlayIntersectionPrimitiveType_Circle"
},
"EVRRenderModelError": {
"0": "VRRenderModelError_None",
"100": "VRRenderModelError_Loading",
"200": "VRRenderModelError_NotSupported",
"300": "VRRenderModelError_InvalidArg",
"301": "VRRenderModelError_InvalidModel",
"302": "VRRenderModelError_NoShapes",
"303": "VRRenderModelError_MultipleShapes",
"304": "VRRenderModelError_TooManyVertices",
"305": "VRRenderModelError_MultipleTextures",
"306": "VRRenderModelError_BufferTooSmall",
"307": "VRRenderModelError_NotEnoughNormals",
"308": "VRRenderModelError_NotEnoughTexCoords",