-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpaper.js
41 lines (37 loc) · 1.15 KB
/
paper.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
import { RepeatWrapping, TextureLoader } from "../third_party/three.module.js";
const loader = new TextureLoader();
const papers = {
"Craft light": { file: "Craft_Light.jpg", texture: null, promise: null },
"Craft rough": { file: "Craft_Rough.jpg", texture: null, promise: null },
"Watercolor cold press": {
file: "Watercolor_ColdPress.jpg",
texture: null,
promise: null,
},
Parchment: { file: "Parchment.jpg", texture: null, promise: null },
};
async function getTexture(name) {
if (papers[name].texture) {
return papers[name].texture;
}
if (!papers[name].promise) {
papers[name].promise = new Promise((resolve, reject) => {
loader.load(`../assets/${papers[name].file}`, (res) => {
res.wrapS = res.wrapT = RepeatWrapping;
papers[name].texture = res;
resolve();
});
});
}
await papers[name].promise;
return papers[name].texture;
}
const params = {
paper: "Craft light",
};
function generateParams(gui, material) {
return gui.add(params, "paper", Object.keys(papers)).onChange(async (v) => {
material.uniforms.paperTexture.value = await getTexture(v);
});
}
export { generateParams };