The Soft Body Simulation page seems to be broken. For me, the canvas stays blank white and I'm getting the following error in the console:
Uncaught TypeError: geometry.addAttribute is not a function
It looks like three.js renamed the addAttribute() method on BufferGeometry to setAttribute() at some point.
I tried changing every addAttribute to setAttribute and that seemed to resolve the issue.
The Soft Body Simulation page seems to be broken. For me, the canvas stays blank white and I'm getting the following error in the console:
Uncaught TypeError: geometry.addAttribute is not a function
It looks like three.js renamed the
addAttribute()
method onBufferGeometry
tosetAttribute()
at some point.I tried changing every
addAttribute
tosetAttribute
and that seemed to resolve the issue.