I’ve never posted here. Bear with me.
I updated ThreeJS version from 103 to 123 last night. I didn’t have as many as errors as I thought I would (after changing the renderer to webgl1), but there was a problem beside that.
I used to update cubecameras per the documentation like this:
statue.visible = false;
statueRef.update( renderer, scene );
statue.visible = true;
That was throwing feedback loop errors. I tried this:
statue.material.visible = false;
statueRef.update( renderer, scene );
statue.material.visible = true;
and it works perfectly without any errors, but that way of updating the CCs isn’t in the documentation.
My question is should the ThreeJS docs be updated?