In Env.js the construction of:
skybox = new GroundedSkybox( hdr );
skybox.scale.setScalar( 100 );
needs to pass the height, radius into the constructor... they don't have default values and are causing the SphereGeometry position attribute to contain NaN values.
causing this error when the background sphere is mouseovered:
error( 'BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The "position" attribute is likely to have NaN values.', this );
A fix could be:
let smoothHeight = .25;
skybox = new GroundedSkybox( hdr, smoothHeight , 1 );
skybox.position.y+=(height * smoothHeight);