public class SimpleTextureWidget extends AbstractWidget<SimpleTextureWidget>
getContentWidth()
and getContentHeight()
.hasInteractivity, hb, isHovered, leftClickStarted, onLeftClick, onMouseEnter, onMouseLeave, onRightClick, rightClickStarted
Constructor and Description |
---|
SimpleTextureWidget(float width,
float height,
com.badlogic.gdx.graphics.Texture texture)
A convenience constructor using a Texture instead of a TextureRegion.
|
SimpleTextureWidget(float width,
float height,
com.badlogic.gdx.graphics.g2d.TextureRegion textureRegion)
Constructs a new widget that will render the provided texture region with the supplied dimensions.
|
Modifier and Type | Method and Description |
---|---|
float |
getContentHeight()
The internal content height of the widget (excludes margins).
|
float |
getContentWidth()
The internal content width of the widget (excludes margins).
|
protected void |
renderWidget(com.badlogic.gdx.graphics.g2d.SpriteBatch sb)
Custom widgets should implement this method for rendering.
|
SimpleTextureWidget |
withColor(com.badlogic.gdx.graphics.Color renderColor)
Use a custom color (useful for tinting) before rendering.
|
SimpleTextureWidget |
withDimensions(float width,
float height)
Update the size post-constructor.
|
SimpleTextureWidget |
withHeight(float height)
Update the vertical height post-constructor.
|
SimpleTextureWidget |
withWidth(float width)
Update the horizontal width post-constructor.
|
anchoredAt, anchoredAt, anchoredAtClamped, anchoredAtClamped, anchoredCenteredOnMouse, anchoredCenteredOnMouse, anchoredCenteredOnMouseClamped, anchoredCenteredOnMouseClamped, anchoredCenteredOnScreen, anchoredCenteredOnScreen, cancelMovementQueue, cancelMovementQueueForAllChildren, delayedTranslate, getBottom, getContentBottom, getContentCenterX, getContentCenterY, getContentLeft, getContentRight, getContentTop, getHeight, getLeft, getRight, getTop, getWidth, hide, initializeInteractivity, isMouseInBounds, isMouseInContentBounds, leftMouseClick, mouseEnter, mouseLeave, onLeftClick, onMouseEnter, onMouseLeave, onRightClick, refreshAnchor, render, renderTopLevel, resolveMovementQueue, rightMouseClick, scaleHitboxToContent, setAllDelayedMovement, setChildrenDelayedMovement, show, toString, translate, update, updateInteractivity, updateWidget, withMargins, withMargins, withMargins
public SimpleTextureWidget(float width, float height, com.badlogic.gdx.graphics.Texture texture)
width
- the desired width of the rendered textureheight
- the desired height of the rendered texturetexture
- the texture to render, stretched to the given width and heightSimpleTextureWidget(float, float, TextureRegion)
public SimpleTextureWidget(float width, float height, com.badlogic.gdx.graphics.g2d.TextureRegion textureRegion)
width
- the desired width of the rendered textureheight
- the desired height of the rendered texturetextureRegion
- the texture to render, stretched to the given width and heightSimpleTextureWidget(float, float, Texture)
public SimpleTextureWidget withColor(com.badlogic.gdx.graphics.Color renderColor)
new Color(1.0f, 1.0f, 1.0f, 0.5f)
, the texture will be rendered transparently and blend with the background.renderColor
- the color used to tint the rendering of this widgetpublic SimpleTextureWidget withWidth(float width)
width
- the desired new content widthwithHeight(float)
,
withDimensions(float, float)
public SimpleTextureWidget withHeight(float height)
height
- the desired new content heightwithWidth(float)
,
withDimensions(float, float)
public SimpleTextureWidget withDimensions(float width, float height)
width
- the desired new content widthheight
- the desired new content heightwithWidth(float)
,
withHeight(float)
public float getContentWidth()
AbstractWidget
getContentWidth
in class AbstractWidget<SimpleTextureWidget>
AbstractWidget.getWidth()
,
AbstractWidget.getContentHeight()
public float getContentHeight()
AbstractWidget
getContentHeight
in class AbstractWidget<SimpleTextureWidget>
AbstractWidget.getHeight()
,
AbstractWidget.getContentWidth()
protected void renderWidget(com.badlogic.gdx.graphics.g2d.SpriteBatch sb)
AbstractWidget
Custom widgets should implement this method for rendering. Use the inner content positions (e.g. AbstractWidget.getContentLeft()
, AbstractWidget.getContentWidth()
, etc.) to determine any position information necessary for rendering at a specific location. If the library is used as intended, these content locations should be accurate to where the widget needs to be rendered, as they reflect the most up to date location set by an anchoredAt call (this automatically will be interpolated if the anchorAt move is set to occur over several frames).
Note: you NEED to revert any changes you make to the SpriteBatch (e.g. setting a shader, changing the perspective matrix, etc.) by the time this function returns, as the SpriteBatch will be reused for rendering other widgets which will not expect those changes. You also don't technically need to render to this particular SpriteBatch (e.g. you can render to your own batch if you know what you're doing), as long as you follow the general intent of this function to render the widget.
renderWidget
in class AbstractWidget<SimpleTextureWidget>
sb
- the SpriteBatch the widget should be rendered onAbstractWidget.renderTopLevel(SpriteBatch)