Spaces:
Running
Running
File size: 269 Bytes
0b12ad4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { WebGLRenderer } from 'https://unpkg.com/[email protected]/build/three.module.js';
function createRenderer() {
const renderer = new WebGLRenderer({ antialias: true });
renderer.physicallyCorrectLights = true;
return renderer;
}
export { createRenderer };
|