Minor modification.

This commit is contained in:
kovacsv 2022-12-14 21:38:42 +01:00
parent 80b690fb9d
commit 3333870439

View File

@ -31,7 +31,7 @@
.then (response => response.arrayBuffer ())
.then ((arrayBuffer) => {
let fileList = [
new File ([arrayBuffer], "file.obj")
new File ([arrayBuffer], 'file.obj')
];
viewer.LoadModelFromFileList (fileList);
});