scene.js 140 B

123456789
  1. import * as THREE from 'three';
  2. export function initScene() {
  3. /**
  4. * 场景
  5. */
  6. const scene = new THREE.Scene();
  7. return scene;
  8. }