Skip to content
Advertisement

WebGL – Black Canvas and console errors with Three.JS and Blazor

I’ve created a blazor web assembly project and am trying to use the JSInterop to use Three.JS to draw a line, following their tutorial’s located Here. I’ve installed Three.JS using npm and webpack with a prebuild event in my csproj file.

JavaScript

The issue is that the canvas renders as black, with nothing else, while the console shows several errors. Any help debugging this would be greatly appreciated. I know I’m slightly in uncharted territory as using Three.js and webgl from blazor isn’t fully featured. Here is the first error:

JavaScript

Debugging in the developer console shows that THREE.BufferGeometry() is undefined, and the error appears to be because of then trying to call the method on an undefined object.

My Razor Page code behind looks like this:

JavaScript

My Javascript File:

JavaScript

I’ve also added the following scripts into my wwwroot.index.html page:

JavaScript

And am importing THREE in my NpmJS.src.index.js file here:

JavaScript

Advertisement

Answer

Prisoner 849’s comment was correct:

“Try newer (the latest) revision of three.js. IIRC, r79 has no implementation of .setFromPoints() for BufferGeometry”

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement