Removed unused imports

This commit is contained in:
Lucas Dower 2022-10-01 23:43:04 +01:00
parent a1bebf332a
commit 0422c07ee9
5 changed files with 3 additions and 6 deletions

View File

@ -15,7 +15,7 @@ import { UI } from './ui/layout';
import { UIMessageBuilder } from './ui/misc';
import { ColourSpace, EAction } from './util';
import { ASSERT } from './util/error_util';
import { LOG, LOG_ERROR, Logger } from './util/log_util';
import { LOG_ERROR, Logger } from './util/log_util';
import { TWorkerJob, WorkerController } from './worker_controller';
import { TFromWorkerMessage, TToWorkerMessage } from './worker_types';

View File

@ -4,7 +4,7 @@ import { BlockAssignerFactory, TBlockAssigners } from './assigners/assigners';
import { Atlas } from './atlas';
import { AtlasPalette } from './block_assigner';
import { BlockInfo } from './block_atlas';
import { BufferGenerator, ChunkedBufferGenerator, TBlockMeshBufferDescription } from './buffer';
import { ChunkedBufferGenerator, TBlockMeshBufferDescription } from './buffer';
import { Palette } from './palette';
import { ProgressManager } from './progress';
import { StatusHandler } from './status';

View File

@ -7,7 +7,6 @@ import { OcclusionManager } from './occlusion';
import { ProgressManager } from './progress';
import { AttributeData } from './render_buffer';
import { ASSERT } from './util/error_util';
import { LOG } from './util/log_util';
import { Vector3 } from './vector';
import { VoxelMesh } from './voxel_mesh';
import { RenderNextVoxelMeshChunkParams } from './worker_types';

View File

@ -1,7 +1,5 @@
import path from 'path';
import { ASSERT } from './error_util';
export namespace PathUtil {
export function join(...paths: string[]) {
return path.join(...paths);

View File

@ -8,7 +8,7 @@ import { ObjImporter } from './importers/obj_importer';
import { Mesh } from './mesh';
import { ProgressManager, TTaskHandle } from './progress';
import { ASSERT } from './util/error_util';
import { LOGF, Logger } from './util/log_util';
import { Logger } from './util/log_util';
import { VoxelMesh } from './voxel_mesh';
import { IVoxeliser } from './voxelisers/base-voxeliser';
import { VoxeliserFactory } from './voxelisers/voxelisers';