SetVisible()
Updated: 3 Nov 2025
Updated: 3 Nov 2025
Sets whether the layer is visible.
This only works when your project is set to Isolated. See Project Settings->General->Composition Mode.
void SetVisible(Bool visible);
visible | The visible state of the layer. |
function Update()
{
layer = Document.FindLayer("My Layer");
layer.SetVisible(true);
}