@turbowarp/types
    Preparing search index...

    Interface CustomState

    interface CustomState {
        "Scratch.looks": {
            drawableId: number | null;
            onSpriteRight: boolean;
            skinId: number | null;
            text: string;
            type: TextBubbleType;
        };
        "Scratch.music": { currentInstrument: number };
        "Scratch.pen": {
            _shade: number;
            brightness: number;
            color: number;
            penAttributes: PenAttributes;
            penDown: boolean;
            saturation: number;
            transparency: number;
        };
        "Scratch.sound": { effects: { pan: number; pitch: number } };
        "Scratch.text2speech": { voiceId: TextToSpeechVoice };
        "Scratch.videoSensing": {
            motionAmount: number;
            motionDirection: number;
            motionFrameNumber: number;
        };
    }
    Index

    Properties

    "Scratch.looks": {
        drawableId: number | null;
        onSpriteRight: boolean;
        skinId: number | null;
        text: string;
        type: TextBubbleType;
    }
    "Scratch.music": { currentInstrument: number }
    "Scratch.pen": {
        _shade: number;
        brightness: number;
        color: number;
        penAttributes: PenAttributes;
        penDown: boolean;
        saturation: number;
        transparency: number;
    }
    "Scratch.sound": { effects: { pan: number; pitch: number } }
    "Scratch.text2speech": { voiceId: TextToSpeechVoice }
    "Scratch.videoSensing": {
        motionAmount: number;
        motionDirection: number;
        motionFrameNumber: number;
    }