Skip to content

Commit 7c13529

Browse files
committed
Fix build issue
1 parent ff40c5d commit 7c13529

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/dev/loaders/src/glTF/2.0/Extensions/KHR_materials_volume.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
import type { Nullable } from "core/types";
33
import type { Material } from "core/Materials/material";
44
import { Color3 } from "core/Maths/math.color";
5+
import { Vector3 } from "core/Maths/math.vector";
56
import type { BaseTexture } from "core/Materials/Textures/baseTexture";
67
import type { IMaterial, ITextureInfo } from "../glTFLoaderInterfaces";
78
import type { IGLTFLoaderExtension } from "../glTFLoaderExtension";
89
import { GLTFLoader } from "../glTFLoader";
910
import type { IKHRMaterialsVolume } from "babylonjs-gltf2interface";
1011
import { registerGLTFExtension, unregisterGLTFExtension } from "../glTFLoaderExtensionRegistry";
11-
import { Vector3 } from "core/Maths";
1212

1313
const NAME = "KHR_materials_volume";
1414

packages/dev/loaders/src/glTF/2.0/openPbrMaterialLoadingAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import type { Material } from "core/Materials/material";
33
import type { BaseTexture } from "core/Materials/Textures/baseTexture";
44
import type { Nullable } from "core/types";
55
import { Color3 } from "core/Maths/math.color";
6+
import { Vector3 } from "core/Maths/math.vector";
67
import type { IMaterialLoadingAdapter } from "./materialLoadingAdapter";
7-
import { Vector3 } from "core/Maths";
88

99
/**
1010
* Material Loading Adapter for OpenPBR materials that provides a unified OpenPBR-like interface.

0 commit comments

Comments
 (0)