Remove(Overlay)
Remove an Overlay from this canvas. Removed Overlays are disassociated from OverlayCanvas and the related EditorWindow, but not destroyed. This means you are able to move a single Overlay between multiple windows.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Overlays
- Assembly: UnityEditor
public bool Remove(Overlay overlay)
Parameters
The Overlay to remove.
Returns
Type | Description |
|---|---|
| bool | Returns true if Overlay was found and removed, false if Overlay was not present in OverlayCanvas. |
Remarks
An Overlay may only belong to a single OverlayCanvas. To display an Overlay in multiple windows, you must instantiate an Overlay for each window.