소스 검색

Fix Import

sebavan 4 년 전
부모
커밋
219a1426ac
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Lights/spotLight.ts

+ 1 - 1
src/Lights/spotLight.ts

@@ -9,7 +9,7 @@ import { BaseTexture } from "../Materials/Textures/baseTexture";
 import { Light } from "./light";
 import { ShadowLight } from "./shadowLight";
 import { Texture } from '../Materials/Textures/texture';
-import { ProceduralTexture } from '../Materials';
+import { ProceduralTexture } from '../Materials/Textures/Procedurals/proceduralTexture';
 
 Node.AddNodeConstructor("Light_Type_2", (name, scene) => {
     return () => new SpotLight(name, Vector3.Zero(), Vector3.Zero(), 0, 0, scene);