@shopware-ag/dive
Version:
Shopware Spatial Framework
27 lines (25 loc) • 537 B
text/typescript
import type { Vector3Like } from 'three';
import type {
COMGroup,
COMLight,
COMModel,
COMPov,
COMPrimitive,
} from '../dive';
export type DIVESceneData = {
name: string;
mediaItem: null;
backgroundColor: string;
floorEnabled: boolean;
floorColor: string;
userCamera: {
position: Vector3Like;
target: Vector3Like;
};
spotmarks: object[];
lights: COMLight[];
objects: COMModel[];
cameras: COMPov[];
primitives: COMPrimitive[];
groups: COMGroup[];
};