-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.json
60 lines (60 loc) · 1.41 KB
/
doc.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
{
"name": "logic",
"description": "weird logic bricks prototype",
"author": "cake",
"config": {
"only-authorized": {
"description": "Whether only authorized players can use logic commands",
"type": "boolean",
"default": true
},
"authorized-users": {
"description": "List of players who can always logic commands",
"type": "players",
"default": []
}
},
"commands": [
{
"name": "/go",
"description": "Build the simulation",
"example": "/go cr",
"args": [
{
"name": "flags",
"description": "r = run, c = clipboard, w = hide wides, l = loose octree. (default none)",
"required": false
}
]
},
{
"name": "/stop",
"description": "Stop the simulation",
"example": "/stop",
"args": []
},
{
"name": "/clg",
"description": "Clear logic bricks and stop the simulation",
"example": "/clg",
"args": []
},
{
"name": "/next",
"description": "Run one or more frames of the simulation",
"example": "/clg 500 100",
"args": [
{
"name": "frames",
"description": "How many frames to run (default 1)",
"required": false
},
{
"name": "sleep",
"description": "Time between frames (default 500)",
"required": false
}
]
}
]
}