Utilising this tutorial I'm trying to see if I can save bandwidth with a large mesh by caching it with indexedDB.
So inside the loader callback function I'm doing...
object = new THREE.Mesh( geometry, material );
webkitIndexedDB.open("MyNewDB").onsuccess = function(event) {
window.db = event.srcElement.result;
window.db.setVersion("1.0").onsuccess = function(event) {
var objectStore = window.db.createObjectStore("meshes", { keyPath: "item_id" });
objectStore.add({item_id: 0, mesh: object}); // <= this is the crucial line
};
};
however the last line where an object containing object is added to the database causes the following error.
Uncaught Error: DATA_CLONE_ERR: DOM Exception 25
I'm not sure what this really means but there must be a way around it no?