bedrock-kit
    Preparing search index...

    Interface SoundEventBinding

    A sound event binding for a specific entity or block, parsed from sounds.json.

    interface SoundEventBinding {
        definitionId: string;
        event: string;
        pitch: number;
        volume: number;
    }
    Index

    Properties

    definitionId: string

    The sound definition ID to play for this event, e.g. "mob.zombie.hurt".

    event: string

    The internal event identifier, e.g. "hurt", "step".

    pitch: number

    The pitch modifier (usually 0.0–1.0).

    volume: number

    The volume modifier (usually 0.0–1.0).