@minecraft
    Preparing search index...

    Class ObservableBooleanBeta

    An observable that holds a boolean value. Listeners are notified whenever the value changes.

    Index

    Constructors

    Methods

    • World mutation Early execution

      Returns boolean

      Returns the current boolean value held by this observable.

    • World mutation Early execution

      Parameters

      • data: boolean

        The new boolean value to set.

      Returns void

      Updates the boolean value held by this observable. If the new value differs from the current value, all subscribed listeners are notified with the new value.

    • World mutation Early execution

      Parameters

      • callback: (arg0: boolean) => void

        A function that receives the new boolean value each time the observable changes.

      Returns (arg0: boolean) => void

      Registers a callback to be invoked whenever the observable's value changes. Returns the callback, which can be passed to unsubscribe to remove the listener.

    • World mutation Early execution

      Parameters

      • callback: (arg0: boolean) => void

        The callback handle previously returned by subscribe.

      Returns boolean

      Removes a previously registered listener from this observable. Returns true if the listener was found and removed, false if it was not found.