-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenvr_actions.json
70 lines (70 loc) · 1.86 KB
/
openvr_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
{
"default_bindings": [
{
"controller_type" : "generic",
"binding_url" : "openvr_bindings.json"
}
],
"actions": [
{
"name": "/actions/demo/in/Hand_Right",
"type": "pose"
},
{
"name": "/actions/demo/in/Hand_Left",
"type": "pose"
},
{
"name": "/actions/demo/out/haptic_left",
"type": "vibration"
},
{
"name": "/actions/demo/out/haptic_right",
"type": "vibration"
},
{
"name": "/actions/demo/in/moving_z",
"type": "vector2"
},
{
"name": "/actions/demo/in/moving_xy",
"type": "vector2"
},
{
"name": "/actions/demo/in/pressed_left_trackpad",
"type": "boolean"
},
{
"name": "/actions/demo/in/pressed_right_trackpad",
"type": "boolean"
},
{
"name": "/actions/demo/in/moving_joystick_z",
"type": "vector2"
},
{
"name": "/actions/demo/in/moving_joystick_xy",
"type": "vector2"
},
{
"name": "/actions/demo/in/quit",
"type": "boolean"
}
],
"localization" : [
{
"language_tag": "en_US",
"/actions/demo/in/Hand_Right" : "Right Hand Pose",
"/actions/demo/in/Hand_Left" : "Left Hand Pose",
"/actions/demo/out/haptic_left" : "Left Haptic Feedback",
"/actions/demo/out/haptic_right" : "Right Haptic Feedback",
"/actions/demo/in/moving_z" : "Move forward/backward",
"/actions/demo/in/moving_xy" : "Move left/right/up/down",
"/actions/demo/in/pressed_left_trackpad" : "Move forward/backward",
"/actions/demo/in/pressed_right_trackpad" : "Move left/right/up/down",
"/actions/demo/in/moving_z" : "Move forward/backward using the joysticks",
"/actions/demo/in/moving_xy" : "Move left/right/up/down using the joysticks",
"/actions/demo/in/quit" : "Quit scene"
}
]
}