20 lines
631 B
JavaScript
20 lines
631 B
JavaScript
import { PerspectiveCamera } from 'three/src/cameras/PerspectiveCamera.js';
|
|
import { Clock } from 'three/src/core/Clock.js';
|
|
import { AmbientLight } from 'three/src/lights/AmbientLight.js';
|
|
import { DirectionalLight } from 'three/src/lights/DirectionalLight.js';
|
|
import { Color } from 'three/src/math/Color.js';
|
|
import { TextureLoader } from 'three/src/loaders/TextureLoader.js';
|
|
import { WebGLRenderer } from 'three/src/renderers/WebGLRenderer.js';
|
|
import { Scene } from 'three/src/scenes/Scene.js';
|
|
|
|
export {
|
|
AmbientLight,
|
|
Clock,
|
|
Color,
|
|
DirectionalLight,
|
|
PerspectiveCamera,
|
|
Scene,
|
|
TextureLoader,
|
|
WebGLRenderer
|
|
};
|