Interface AsukaAssemblyMaterialPreset

interface AsukaAssemblyMaterialPreset {
    builtIn?: boolean;
    category?: string;
    id: string;
    material: AsukaAssemblySurfaceMaterial;
    metadata?: Record<string, unknown>;
    name: string;
    thumbnailUrl?: string;
}

Properties

builtIn?: boolean

Built-in presets are returned by the API but are not duplicated in state.

category?: string
id: string
metadata?: Record<string, unknown>
name: string
thumbnailUrl?: string