-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpcspec.json
52 lines (51 loc) · 1.01 KB
/
rpcspec.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
[
{
"method": "onObject",
"params": {
"object": "Object",
"surface": "Object"
},
"returns" : true
},
{
"method": "getSimtime",
"params": null,
"returns" : 1.23
},
{
"method": "getPosition",
"params": {
"object": "Object"
},
"returns" : [1.23, 1.23, 1.23]
},
{
"method": "monitorLinkEvents",
"params": {
"modelName": "modelName",
"jointName": "jointName",
"linkName": "linkName"
},
"returns" : true
},
{
"method": "getLinkEventHistory",
"params": {
"modelName": "modelName",
"jointName": "jointName",
"linkName": "linkName"
},
"returns" : [[1.23, true, "Name"]]
},
{
"notification": "resetWorld",
"params": null
},
{
"method": "loadWorld",
"params": {
"world" : "Worldname"
},
"returns" : true
}
]