-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwcube.js
51 lines (51 loc) · 1.09 KB
/
wcube.js
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
Hooks.once('diceSoNiceReady', (dice3d) => {
dice3d.addSystem({id: "wcube", name: "Aperture Science"}, false);
dice3d.addDicePreset({
type: "d2",
labels: "",
modelFile: "modules/wcube/wcube_d2.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d4",
labels: "",
modelFile: "modules/wcube/wcube_d4.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d6",
labels: "",
modelFile: "modules/wcube/wcube_d6.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d8",
labels: "",
modelFile: "modules/wcube/wcube_d8.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d10",
labels: "",
modelFile: "modules/wcube/wcube_d10.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d100",
labels: "",
modelFile: "modules/wcube/wcube_d100.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d12",
labels: "",
modelFile: "modules/wcube/wcube_d12.glb",
system: "wcube"
});
dice3d.addDicePreset({
type: "d20",
labels: "",
modelFile: "modules/wcube/wcube_d20.glb",
system: "wcube"
});
});