public abstract class ShaderWidget<T extends ShaderWidget<T>> extends AbstractWidget<T>
PieChartWidget
and future as-of-yet unimplemented widgets that may use the same idea. (You probably won't find much use out of this widget as is).Modifier and Type | Field and Description |
---|---|
protected float |
height |
protected com.badlogic.gdx.graphics.glutils.ShaderProgram |
shaderProgram |
protected com.badlogic.gdx.graphics.Texture |
tex |
protected float |
width |
hasInteractivity, hb, isHovered, leftClickStarted, onLeftClick, onMouseEnter, onMouseLeave, onRightClick, rightClickStarted
Constructor and Description |
---|
ShaderWidget(float width,
float height,
java.lang.String vertexShaderPath,
java.lang.String fragmentShaderPath) |
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 |
renderTexture(com.badlogic.gdx.graphics.g2d.SpriteBatch sb) |
protected void |
renderWidget(com.badlogic.gdx.graphics.g2d.SpriteBatch sb)
Custom widgets should implement this method for rendering.
|
protected void |
setUniforms() |
T |
withDimensions(float newWidth,
float newHeight)
Update the size post-constructor.
|
T |
withHeight(float newHeight)
Update the vertical height post-constructor.
|
T |
withWidth(float newWidth)
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
protected com.badlogic.gdx.graphics.Texture tex
protected com.badlogic.gdx.graphics.glutils.ShaderProgram shaderProgram
protected float width
protected float height
public ShaderWidget(float width, float height, java.lang.String vertexShaderPath, java.lang.String fragmentShaderPath)
public float getContentWidth()
AbstractWidget
getContentWidth
in class AbstractWidget<T extends ShaderWidget<T>>
AbstractWidget.getWidth()
,
AbstractWidget.getContentHeight()
public float getContentHeight()
AbstractWidget
getContentHeight
in class AbstractWidget<T extends ShaderWidget<T>>
AbstractWidget.getHeight()
,
AbstractWidget.getContentWidth()
public T withWidth(float newWidth)
newWidth
- the new width of the widgetwithHeight(float)
,
withDimensions(float, float)
public T withHeight(float newHeight)
newHeight
- the new height of the widgetwithWidth(float)
,
withDimensions(float, float)
public T withDimensions(float newWidth, float newHeight)
newWidth
- the desired new content widthnewHeight
- the desired new content heightwithWidth(float)
,
withHeight(float)
protected void setUniforms()
protected void renderTexture(com.badlogic.gdx.graphics.g2d.SpriteBatch sb)
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<T extends ShaderWidget<T>>
sb
- the SpriteBatch the widget should be rendered onAbstractWidget.renderTopLevel(SpriteBatch)