RemoveLayer
Introduction
Code Example
// In the Screen - add the Layer as member
Layer myLayer;
// Create the Layer in CustomInitialize:
myLayer = Camera.Main.AddLayer();
// Remove the Layer in CustomDestroy:
Camera.Main.RemoveLayer(myLayer);Last updated
Was this helpful?