Visible
Introduction
Code Example
private void CustomInitialize()
{
// assuming the NodeNetwork is defined in Glue.
// If not, you can create it in code too
NodeNetworkInstance.Visible = true;
}
private void CustomDestroy()
{
// Setting it to invisible automatically removes all shapes
// from the ShapeManager.
NodeNetworkInstance.Visible = false;
}Last updated
Was this helpful?