diff options
Diffstat (limited to 'frontend/site/projects/museum/stl-files.js')
| -rw-r--r-- | frontend/site/projects/museum/stl-files.js | 52 |
1 files changed, 28 insertions, 24 deletions
diff --git a/frontend/site/projects/museum/stl-files.js b/frontend/site/projects/museum/stl-files.js index a7a0242..6ac3b75 100644 --- a/frontend/site/projects/museum/stl-files.js +++ b/frontend/site/projects/museum/stl-files.js @@ -1,12 +1,13 @@ export const STL_FILES = { - "nora-queen-of-night-server": { - url: "/last-museum/static/media/last-museum/nora-albadri/queen.stl", + + "nora-nefertiti": { + url: "/last-museum/static/media/last-museum/nora-albadri/nefertiti.stl", modelMaterial: { - color: "#BCC6CC", - shininess: 50, + color: "#0000ff", + shininess: 30, }, width: () => window.innerWidth / 2, - height: () => window.innerHeight, + height: () => window.innerHeight * 2/3, style: { left: "0", top: "0", @@ -20,17 +21,18 @@ export const STL_FILES = { } }, - "nora-lamassu-space": { - url: "/last-museum/static/media/last-museum/nora-albadri/lamassu.stl", + "nora-horus-2": { + url: "/last-museum/static/media/last-museum/nora-albadri/shehorus.stl", modelMaterial: { - color: "#bfb8a8", - shininess: 60, + color: "#888888", + shininess: 100, }, width: () => window.innerWidth / 2, height: () => window.innerHeight, style: { right: "0", - top: "0", + top: "50%", + transform: "translateY(-50%)", }, transform: { rotate: { @@ -61,16 +63,17 @@ export const STL_FILES = { } } }, - "nora-nefertiti": { - url: "/last-museum/static/media/last-museum/nora-albadri/nefertiti.stl", + + "nora-lamassu-space": { + url: "/last-museum/static/media/last-museum/nora-albadri/lamassu.stl", modelMaterial: { - color: "#0000ff", - shininess: 30, + color: "#bfb8a8", + shininess: 60, }, width: () => window.innerWidth / 2, - height: () => window.innerHeight * 2/3, + height: () => window.innerHeight, style: { - left: "0", + right: "0", top: "0", }, transform: { @@ -81,18 +84,18 @@ export const STL_FILES = { } } }, - "nora-horus-2": { - url: "/last-museum/static/media/last-museum/nora-albadri/shehorus.stl", + + "nora-queen-of-night-server": { + url: "/last-museum/static/media/last-museum/nora-albadri/queen.stl", modelMaterial: { - color: "#888888", - shininess: 100, + color: "#BCC6CC", + shininess: 80, }, width: () => window.innerWidth / 2, height: () => window.innerHeight, style: { - right: "0", - top: "50%", - transform: "translateY(-50%)", + left: "0", + top: "0", }, transform: { rotate: { @@ -101,5 +104,6 @@ export const STL_FILES = { z: 0, } } - } + }, + } |
