midorable
    Preparing search index...

    Interface InputTouchSnapshot

    タッチ入力のスナップショット

    interface InputTouchSnapshot {
        id: number;
        inBounds: boolean;
        kind: "touch";
        pressed: boolean;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    id: number

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

    inBounds: boolean

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

    kind: "touch"
    pressed: boolean

    タッチされているか

    x: number

    ポインタのX座標

    y: number

    ポインタのY座標