Skip to content

Commit 493abb7

Browse files
committed
Fix imports
1 parent 0c6b94e commit 493abb7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/effects/LUT3DEffect.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from "three";
1111

1212
import { BlendFunction } from "../enums/BlendFunction.js";
13-
import { LookupTexture } from "../textures/LookupTexture.js";
13+
import { LookupTexture } from "../textures/lut/LookupTexture.js";
1414
import { Effect } from "./Effect.js";
1515

1616
import fragmentShader from "./glsl/lut-3d.frag";

src/loaders/LUT3dlLoader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { FileLoader, Loader, LoadingManager } from "three";
2-
import { LookupTexture } from "../textures/LookupTexture.js";
2+
import { LookupTexture } from "../textures/lut/LookupTexture.js";
33

44
/**
55
* A 3D LUT loader that supports the .3dl file format.

src/loaders/LUTCubeLoader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { FileLoader, Loader, LoadingManager, Vector3 } from "three";
2-
import { LookupTexture } from "../textures/LookupTexture.js";
2+
import { LookupTexture } from "../textures/lut/LookupTexture.js";
33

44
/**
55
* A 3D LUT loader that supports the .cube file format.

0 commit comments

Comments
 (0)