Describes basic layer state information within the editor view.

Contains the layer's display name and common visibility/freeze flags.

interface AcEdLayerInfo {
    isFrozen: boolean;
    isOff: boolean;
    name: string;
}

Properties

Properties

isFrozen: boolean

When true, the layer is frozen (entities are hidden from display and don't participate regen.).

isOff: boolean

When true, the layer is turned off (entities are hidden from display but still participate regen).

name: string

Human-readable layer name.