Interface WorkModel

模型数据

interface WorkModel {
    file?: string;
    layers: {
        name: string;
        tileset: string;
        type: "point_cloud" | "mesh";
        upAxis: string;
    }[];
    textureBase?: string;
    textures?: string[];
    work: Work;
}

Properties

file?: string

模型文件地址 at3d / domez

layers: {
    name: string;
    tileset: string;
    type: "point_cloud" | "mesh";
    upAxis: string;
}[]

3d tile

textureBase?: string

模型贴图文件地址的父目录

textures?: string[]

模型贴图文件地址

work: Work

work