Script API - v1.26.10.25
    Preparing search index...

    Interface EntityVisibilityRulesBeta

    Controls when a waypoint is visible based on the state of the entity it tracks. These rules allow filtering waypoint visibility by entity conditions like sneaking, invisibility, and death state.

    interface EntityVisibilityRules {
        showDead?: boolean;
        showInvisible?: boolean;
        showSneaking?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    showDead?: boolean

    Controls whether the waypoint is shown when the tracked entity is dead. If undefined, defaults to true.

    showInvisible?: boolean

    Controls whether the waypoint is shown when the tracked entity is invisible. If undefined, defaults to true.

    showSneaking?: boolean

    Controls whether the waypoint is shown when the tracked entity is sneaking. If undefined, defaults to true.