File size: 229 Bytes
0b12ad4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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 };