Open RossComputerGuy opened 6 years ago
I have a div with the game id and I run this.this.voxel.appendTo(document.getElementById("game")) but I'm getting an error saying that document.getElementById("game") is not a Node. How do I fix this?
game
this.this.voxel.appendTo(document.getElementById("game"))
changing appendChild to append in the voxel-engine code then gets this error Uncaught TypeError: Cannot read property 'parentElement' of undefined
voxel-engine
Uncaught TypeError: Cannot read property 'parentElement' of undefined
I have a div with the
game
id and I runthis.this.voxel.appendTo(document.getElementById("game"))
but I'm getting an error saying that document.getElementById("game") is not a Node. How do I fix this?