Skip to content

Commit 34f996f

Browse files
authored
MERF: changed path to scene files hosted on google cloud storage
1 parent 11dbdea commit 34f996f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

assets/js/merf/selectquality.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

22
function start() {
33
const params = new URL(window.location.href).searchParams;
4-
dirUrl = '/assets/scenes/' + params.get('scene') + '.json';
4+
//dirUrl = '/assets/scenes/' + params.get('scene') + '.json'; // for dropbox
5+
dirUrl = 'https://storage.googleapis.com/realtime-nerf-360/merf/' + params.get('scene');
56
const qualityPresets = ['phone', 'low', 'medium', 'high'];
67
for (const quality of qualityPresets) {
78
console.log(quality);

0 commit comments

Comments
 (0)