Browse Source

BatchedMesh: Fixed imports.

Mr.doob 1 year ago
parent
commit
2b3883adf8
1 changed files with 14 additions and 16 deletions
  1. 14 16
      src/objects/BatchedMesh.js

+ 14 - 16
src/objects/BatchedMesh.js

@@ -1,19 +1,17 @@
-import {
-	BufferAttribute,
-	BufferGeometry,
-	DataTexture,
-	FloatType,
-	MathUtils,
-	Matrix4,
-	Mesh,
-	RGBAFormat,
-	Box3,
-	Sphere,
-	Frustum,
-	WebGLCoordinateSystem,
-	WebGPUCoordinateSystem,
-	Vector3,
-} from 'three';
+import { BufferAttribute } from '../core/BufferAttribute.js';
+import { BufferGeometry } from '../core/BufferGeometry.js';
+import { DataTexture } from '../textures/DataTexture.js';
+import { FloatType } from '../constants.js';
+import { MathUtils } from '../math/MathUtils.js';
+import { Matrix4 } from '../math/Matrix4.js';
+import { Mesh } from './Mesh.js';
+import { RGBAFormat } from '../constants.js';
+import { Box3 } from '../math/Box3.js';
+import { Sphere } from '../math/Sphere.js';
+import { Frustum } from '../math/Frustum.js';
+import { WebGLCoordinateSystem } from '../constants.js';
+import { WebGPUCoordinateSystem } from '../constants.js';
+import { Vector3 } from '../math/Vector3.js';
 
 
 function sortOpaque( a, b ) {
 function sortOpaque( a, b ) {