Update import paths for world settings
This commit is contained in:
@@ -36,7 +36,7 @@ import {
|
||||
areAdvancedRenderingSettingsEqual,
|
||||
cloneAdvancedRenderingSettings,
|
||||
type AdvancedRenderingSettings
|
||||
} from "../document/scene-document";
|
||||
} from "../document/world-settings";
|
||||
|
||||
import { FirstPersonNavigationController } from "./first-person-navigation-controller";
|
||||
import type { FirstPersonTelemetry, NavigationController, RuntimeControllerContext } from "./navigation-controller";
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
createStopAnimationInteractionLink,
|
||||
createStopSoundInteractionLink
|
||||
} from "../../src/interactions/interaction-links";
|
||||
import { createDefaultWorldSettings } from "../../src/document/scene-document";
|
||||
import { createDefaultWorldSettings } from "../../src/document/world-settings";
|
||||
import { RuntimeInteractionSystem } from "../../src/runtime-three/runtime-interaction-system";
|
||||
import type { RuntimeSceneDefinition } from "../../src/runtime-three/runtime-scene-build";
|
||||
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
import { createDefaultWorldSettings } from "../../src/document/scene-document";
|
||||
import { areWorldSettingsEqual, changeWorldBackgroundMode, cloneWorldSettings } from "../../src/document/world-settings";
|
||||
import {
|
||||
areWorldSettingsEqual,
|
||||
changeWorldBackgroundMode,
|
||||
cloneWorldSettings,
|
||||
createDefaultWorldSettings
|
||||
} from "../../src/document/world-settings";
|
||||
|
||||
describe("world settings helpers", () => {
|
||||
it("clones world settings without retaining nested references", () => {
|
||||
|
||||
Reference in New Issue
Block a user