Class ButtonPushAfterEventSignal

Manages callbacks that are connected to when a button is pushed.

Example

buttonPushEvent.ts

import { world, system, BlockPermutation, ButtonPushAfterEvent, DimensionLocation } from "@minecraft/server";
import { MinecraftBlockTypes } from "@minecraft/vanilla-data";

function buttonPushEvent(log: (message: string, status?: number) => void, targetLocation: DimensionLocation) {
// set up a button on cobblestone
const cobblestone = targetLocation.dimension.getBlock(targetLocation);
const button = targetLocation.dimension.getBlock({
x: targetLocation.x,
y: targetLocation.y + 1,
z: targetLocation.z,
});

if (cobblestone === undefined || button === undefined) {
log("Could not find block at location.");
return -1;
}

cobblestone.setPermutation(BlockPermutation.resolve(MinecraftBlockTypes.Cobblestone));
button.setPermutation(BlockPermutation.resolve(MinecraftBlockTypes.AcaciaButton).withState("facing_direction", 1));

world.afterEvents.buttonPush.subscribe((buttonPushEvent: ButtonPushAfterEvent) => {
const eventLoc = buttonPushEvent.block.location;

if (eventLoc.x === targetLocation.x && eventLoc.y === targetLocation.y + 1 && eventLoc.z === targetLocation.z) {
log("Button push event at tick " + system.currentTick);
}
});
}

Hierarchy

Constructors

Methods

Constructors

Methods

  • Parameters

    Returns ((arg0) => void)

      • (arg0): void
      • Parameters

        Returns void

        Deprecated

        This function is deprecated and will be removed in 2.0.0.

        Remarks

        Subscribes to the event.

        This function can't be called in read-only mode.

    Deprecated

    This function is deprecated and will be removed in 2.0.0.

    Remarks

    Subscribes to the event.

    This function can't be called in read-only mode.

  • Parameters

    Returns void

    Deprecated

    This function is deprecated and will be removed in 2.0.0.

    Remarks

    Unsubscribes from the event.

    This function can't be called in read-only mode.