public class EaselGraphicsHelper
extends java.lang.Object
Constructor and Description |
---|
EaselGraphicsHelper() |
Modifier and Type | Method and Description |
---|---|
static void |
dimFullScreen(com.badlogic.gdx.graphics.g2d.SpriteBatch sb,
boolean fullyDark)
DEBUG: Draws a black rectangle over the entire screen, useful for dimming or obscuring the background.
|
static void |
drawDebugRects(com.badlogic.gdx.graphics.g2d.SpriteBatch sb,
AbstractWidget widget)
(DEBUG) Draw both sets of dimensions for the given widget (full and inner content) as rectangles.
|
static void |
drawRect(com.badlogic.gdx.graphics.g2d.SpriteBatch sb,
AbstractWidget widget,
boolean useFull,
com.badlogic.gdx.graphics.Color color)
Draws a simple rectangle onto the SpriteBatch using the given widget's inner content dimensions (e.g.
|
static void |
drawRect(com.badlogic.gdx.graphics.g2d.SpriteBatch sb,
float left,
float bottom,
float width,
float height,
com.badlogic.gdx.graphics.Color color)
Draws a simple rectangle onto the SpriteBatch.
|
public static void drawRect(com.badlogic.gdx.graphics.g2d.SpriteBatch sb, float left, float bottom, float width, float height, com.badlogic.gdx.graphics.Color color)
sb
- the SpriteBatch to render onleft
- the left most x-coordinate of the rectanglebottom
- the bottom most y-coordinate of the rectanglewidth
- the width of the rectangleheight
- the height of the rectanglecolor
- the color of the rectanglepublic static void drawRect(com.badlogic.gdx.graphics.g2d.SpriteBatch sb, AbstractWidget widget, boolean useFull, com.badlogic.gdx.graphics.Color color)
AbstractWidget.getContentLeft()
, AbstractWidget.getContentHeight()
, etc.) or the widget's full dimensions (e.g. AbstractWidget.getLeft()
, AbstractWidget.getWidth()
, etc.) as the bounds. This helper is mostly for debug purposes and assumes the widget has been properly anchored. See the notes on AbstractWidget.withMargins(float)
for details about the difference between the full dimensions and the inner content dimensions.sb
- the SpriteBatch to render onwidget
- the widget whose dimensions will be used as the rectangle sourceuseFull
- whether to use the full dimensions (with margins) [useFull == true
] or just the inner content dimensions (excludes margins) [useFull == false
]color
- the color of the rectanglepublic static void drawDebugRects(com.badlogic.gdx.graphics.g2d.SpriteBatch sb, AbstractWidget widget)
drawRect(SpriteBatch, AbstractWidget, boolean, Color)
twice, first for the full size and then secondly for the inner content.sb
- the SpriteBatch to draw onwidget
- the widget whose dimensions to usepublic static void dimFullScreen(com.badlogic.gdx.graphics.g2d.SpriteBatch sb, boolean fullyDark)
sb
- the SpriteBatch to draw the black rectangle onfullyDark
- if true, will render a fully black rectangle which will completely hide everything underneath; if false, the