public interface IScreenOverlayContainer
ScreenOverlayManager
and ScreenOverlay
.Modifier and Type | Method and Description |
---|---|
boolean |
getDisplay()
Gets if this parent and the collection of overlays that are contained within this parent should be
rendered.
|
ScreenOverlayCollection |
getOverlays()
Gets the collection of overlays that are contained within this parent.
|
ScreenOverlayPadding |
getPadding()
Gets the padding surrounding the
Overlays (get ) that are contained within this parent. |
void |
setDisplay(boolean value)
Sets if this parent and the collection of overlays that are contained within this parent should be
rendered.
|
void |
setPadding(ScreenOverlayPadding value)
Sets the padding surrounding the
Overlays (get ) that are contained within this parent. |
ScreenOverlayCollection getOverlays()
ScreenOverlayPadding getPadding()
Overlays
(get
) that are contained within this parent.void setPadding(ScreenOverlayPadding value)
Overlays
(get
) that are contained within this parent.boolean getDisplay()
A overlay must be added to the ScreenOverlayManager
before it is rendered. Once in the manager, setting this
property to false
is more efficient than removing the overlay
from the manager. Although, it is recommended to remove the overlay
from the manager if the overlay will be hidden for a long period of time.
ScreenOverlayManager
void setDisplay(boolean value)
A overlay must be added to the ScreenOverlayManager
before it is rendered. Once in the manager, setting this
property to false
is more efficient than removing the overlay
from the manager. Although, it is recommended to remove the overlay
from the manager if the overlay will be hidden for a long period of time.
ScreenOverlayManager