@typed-tabletop-simulator/lib
Version:
Library with some helping modules for working with Tabletop Simulator
13 lines (12 loc) • 381 B
TypeScript
/** @noSelfInFile */
import { BaseProperties } from "./baseObject";
export interface CustomModelProperties extends BaseProperties {
type: ModelType;
model: string;
texture: string;
collider?: string;
material?: MaterialType;
convex?: boolean;
content?: ObjectData[];
}
export declare const createModel: (properties: CustomModelProperties) => ModelData;