-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.js
More file actions
36 lines (36 loc) · 844 Bytes
/
map.js
File metadata and controls
36 lines (36 loc) · 844 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
export const Places = [
{
id: "church_of_st_peter_stourton",
title: "St Peter's, United Kingdom.",
models: ["4k.glb", "8k.glb","1k.glb"],
callback: (model) => {
model.position.set(-20, -25, 0);
model.scale.set(10, 10, 10);
}
},
{
id: "Calatrava_la_Nueva_Spain",
title: "Calatrava la Nueva, Spain.",
models: ["1k.glb"],
callback: (model) => {
model.position.set(10, -90, 100);
model.scale.set(10, 10, 10);
}
},
{
id: "Sacrification_Church_of_Pyhamaa",
title: "Sacrification Pyhämaa, Finland.",
models: ["1k.glb"],
callback: (model) => {
model.position.set(2, -30, 50);
model.scale.set(10, 10, 10);
}
},
];
export const Rosaries = [
{
id: "rosary_default",
title: "Wood default",
models: ["default.glb", "4k.glb"],
},
];