-
Notifications
You must be signed in to change notification settings - Fork 1
/
virtual_controller.json
executable file
·50 lines (50 loc) · 1.11 KB
/
virtual_controller.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
{
"type": "CONTROLLER",
"name": "Laptop Keyboard Control",
"uuid": "d1ff06aa-452f-47fd-904f-3ae4708368c0",
"default_remote_bot": "92faa9a1-c183-449d-9af4-69c23ec77c74",
"viewports": ["front_head"],
"control_scheme": "KEYBOARD",
"keymap": [
{
"key": "w",
"expiry": 0.5,
"intents": [
{
"axis": "x_vel",
"rate": 1
}
]
},
{
"key": "a",
"expiry": 0.5,
"intents": [
{
"axis": "yaw_vel",
"rate": -1
}
]
},
{
"key": "s",
"expiry": 0.5,
"intents": [
{
"axis": "x_vel",
"rate": -1
}
]
},
{
"key": "d",
"expiry": 0.5,
"intents": [
{
"axis": "yaw_vel",
"rate": 1
}
]
}
]
}