Update test imports for project setup, entity creation, and scheduling
This commit is contained in:
@@ -1,11 +1,22 @@
|
|||||||
import { describe, expect, it, vi } from "vitest";
|
import { describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
import { createEmptySceneDocument } from "../../src/document/scene-document";
|
import { createActorControlTargetRef } from "../../src/controls/control-surface";
|
||||||
|
import {
|
||||||
|
createEmptyProjectDocument,
|
||||||
|
createEmptyProjectScene,
|
||||||
|
createEmptySceneDocument,
|
||||||
|
createSceneDocumentFromProject
|
||||||
|
} from "../../src/document/scene-document";
|
||||||
|
import { createNpcEntity } from "../../src/entities/entity-instances";
|
||||||
import {
|
import {
|
||||||
EditorSimulationController,
|
EditorSimulationController,
|
||||||
type EditorSimulationUiSnapshot
|
type EditorSimulationUiSnapshot
|
||||||
} from "../../src/runtime-three/editor-simulation-controller";
|
} from "../../src/runtime-three/editor-simulation-controller";
|
||||||
import { buildRuntimeSceneFromDocument } from "../../src/runtime-three/runtime-scene-build";
|
import { buildRuntimeSceneFromDocument } from "../../src/runtime-three/runtime-scene-build";
|
||||||
|
import {
|
||||||
|
createEmptyProjectScheduler,
|
||||||
|
createProjectScheduleRoutine
|
||||||
|
} from "../../src/scheduler/project-scheduler";
|
||||||
|
|
||||||
function createManualFrameController(options: {
|
function createManualFrameController(options: {
|
||||||
uiSnapshotIntervalSeconds?: number;
|
uiSnapshotIntervalSeconds?: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user