Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 935 Bytes

File metadata and controls

23 lines (17 loc) · 935 Bytes

CanvasSortOrderUtility

static class in AdvancedSceneManager.Utility

Description

An utility class to manage sort order on canvases.

Static Properties

Member Description
Canvas GetBottomCanvas Gets the bottommost canvas.
Canvas GetTopCanvas Gets the topmost canvas.

Static Methods

Member Description
void PutAbove(Canvas canvas, Canvas target) Inserts this canvas above target.
void PutAtBottom(Canvas canvas) Sets the sort order on this canvas to be on bottom of all other canvases managed by Utility.CanvasSortOrderUtility.
void PutBelow(Canvas canvas, Canvas target) Inserts this canvas below target.
void PutOnTop(Canvas canvas) Sets the sort order on this canvas to be on top of all other canvases managed by Utility.CanvasSortOrderUtility.
void Remove(Canvas canvas) Removes a canvas.