FoundryVTT MCP Server Documentation - v0.9.2
    Preparing search index...

    Interface FoundryDrawing

    Represents a drawing/annotation in a FoundryVTT scene

    Drawings allow GMs and players to add visual annotations, shapes, and text directly onto scenes.

    FoundryDrawing

    interface FoundryDrawing {
        _id: string;
        type: string;
        x: number;
        y: number;
        width?: number;
        height?: number;
        points?: number[];
        shape?: any;
        fillType: number;
        fillColor?: string;
        strokeWidth: number;
        strokeColor?: string;
        text?: string;
        fontSize?: number;
        fontFamily?: string;
        textColor?: string;
        hidden: boolean;
        locked: boolean;
    }
    Index

    Properties

    _id: string
    type: string
    x: number
    y: number
    width?: number
    height?: number
    points?: number[]
    shape?: any
    fillType: number
    fillColor?: string
    strokeWidth: number
    strokeColor?: string
    text?: string
    fontSize?: number
    fontFamily?: string
    textColor?: string
    hidden: boolean
    locked: boolean