midorable
    Preparing search index...

    Interface InputPenSnapshot

    ペン入力のスナップショット

    interface InputPenSnapshot {
        id: number;
        inBounds: boolean;
        kind: "pen";
        pressed: boolean;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    id: number

    ポインタのID(全ポインタで一意)

    inBounds: boolean

    ポインタが画面内にあるか

    kind: "pen"
    pressed: boolean

    ペンが押されているか

    x: number

    ポインタのX座標

    y: number

    ポインタのY座標