-
Notifications
You must be signed in to change notification settings - Fork 6
/
actions.json
93 lines (93 loc) · 2.26 KB
/
actions.json
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
{
"actions": [
{
"name": "/actions/SimpleVR_Ingame/in/Move",
"type": "vector2",
"requirement": "mandatory"
},
{
"name": "/actions/SimpleVR_Ingame/in/Grab",
"type": "boolean",
"requirement": "mandatory"
},
{
"name": "/actions/SimpleVR_Ingame/in/TurnAround",
"type": "boolean",
"requirement": "mandatory"
},
{
"name": "/actions/SimpleVR_Ingame/in/SkeletonLeftHand",
"type": "skeleton",
"skeleton": "/skeleton/hand/left"
},
{
"name": "/actions/SimpleVR_Ingame/in/SkeletonRightHand",
"type": "skeleton",
"skeleton": "/skeleton/hand/right"
},
{
"name": "/actions/SimpleVR_Ingame/in/TurnLeft",
"type": "boolean"
},
{
"name": "/actions/SimpleVR_Ingame/in/TurnRight",
"type": "boolean"
},
{
"name": "/actions/SimpleVR_Ingame/out/Haptic",
"type": "vibration"
},
{
"name": "/actions/SimpleVR_Menu/in/Menu",
"type": "boolean",
"requirement": "suggested"
},
{
"name": "/actions/SimpleVR_Menu/in/Enter",
"type": "boolean"
},
{
"name": "/actions/SimpleVR_Menu/in/Back",
"type": "boolean"
}
],
"action_sets": [
{
"name": "/actions/SimpleVR_Ingame",
"usage": "single"
},
{
"name": "/actions/SimpleVR_Menu",
"usage": "single"
}
],
"default_bindings": [
{
"controller_type": "vive_controller",
"binding_url": "bindings_vive_controller.json"
},
{
"controller_type": "oculus_touch",
"binding_url": "bindings_oculus_touch.json"
},
{
"controller_type": "knuckles",
"binding_url": "bindings_knuckles.json"
},
{
"controller_type": "holographic_controller",
"binding_url": "bindings_holographic_controller.json"
}
],
"localization": [
{
"language_tag": "en_US",
"/actions/SimpleVR_Ingame/in/Move": "Move",
"/actions/SimpleVR_Ingame/in/Grab": "Grab",
"/actions/SimpleVR_Ingame/in/TurnAround": "TurnAround",
"/actions/SimpleVR_Ingame/out/Haptic": "Haptic",
"/actions/SimpleVR_Ingame/in/SkeletonLeftHand": "Skeleton (Left)",
"/actions/SimpleVR_Ingame/in/SkeletonRightHand": "Skeleton (Right)"
}
]
}