-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmodule.json
More file actions
67 lines (57 loc) · 994 Bytes
/
module.json
File metadata and controls
67 lines (57 loc) · 994 Bytes
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
{
"name":"My custom module",
"type":"OSC",
"path":"Custom",
"version":"1.0.0",
"description":"My module description",
"url":"https://github.com/tommag/Sample-Chataigne-module",
"downloadURL":"https://github.com/tommag/Sample-Chataigne-module/archive/master.zip",
"hasInput":true,
"hasOutput":true,
"hideDefaultCommands":false,
"defaults":
{
"autoAdd":false,
"oscInput":
{
"localPort":9001
}
},
"parameters":
{
"Module param":
{
"type":"Integer"
}
},
"hideDefaultParameters": [ "autoAdd", "oscInput/localPort"],
"scripts":
[
"moduleScript.js"
],
"values":
{
"Module value":
{
"type":"Float"
}
},
"commands":
{
"Custom command":
{
"menu":"",
"callback":"customCmd",
"parameters":
{
"Value":
{
"type":"Integer",
"min":0,
"max":100,
"default":0
}
}
}
}
}