Code viewer for World: New World
import * as THREE from '/api/threemodule/libs/three.module.js';

const CAMERA_POS = [0, 0, 25];
const CAMERA_TARGET = [0, 0, 0];

AB.newDiv('container');
const container = document.getElementById('container');

const renderer = new THREE.WebGLRenderer({
  antialias: true
});

const scene = new THREE.Scene();

// set background to light blue
scene.background = new THREE.Color("#b0e0e6");