Hello! I am trying to use Speckle Viewer 2.0 API, and when changing the background colour of the SpeckleRenderer, it appears to draw the new colour on top of the object I am displaying.
All I’ve done to change the background colour is add this as a step in loading the viewer:
this.viewer.getRenderer().scene.background = new Color(0x33cc33);
and it ends up displaying this:
I would assume that I am somehow adding the colour over the top, but that would not make sense as I am only assigning a new colour to a preexisting background.
Any help would be incredibly appreciated!