Notch Notch
Manual 2026.1 / 1.0 Manual 0.9.23
 Light | Dark
GetVisible()

GetVisible()

Updated: 3 Nov 2025

Purpose #

Retrieves the visible state of the layer.

This only works when your project is set to Isolated. See Project Settings->General->Composition Mode.

Syntax #

bool GetVisible();

Example #

function Update()
{ 
    layer = Document.FindLayer("My Layer");
    visible = layer.GetVisible();
}