Vivien
Add project
0b12ad4
raw
history blame contribute delete
229 Bytes
import { Color, Scene } from 'https://unpkg.com/[email protected]/build/three.module.js';
function createScene() {
const scene = new Scene();
scene.background = new Color('#282828');
return scene;
}
export { createScene };