Package com.prineside.tdi2.scene2d.utils
Class NinePatchDrawable
java.lang.Object
com.prineside.tdi2.scene2d.utils.BaseDrawable
com.prineside.tdi2.scene2d.utils.NinePatchDrawable
- All Implemented Interfaces:
Drawable
,TransformDrawable
Drawable for a
NinePatch
.
The drawable sizes are set when the ninepatch is set, but they are separate values. Eg, Drawable.getLeftWidth()
could
be set to more than NinePatch.getLeftWidth()
in order to provide more space on the left than actually exists in the
ninepatch.
The min size is set to the ninepatch total size by default. It could be set to the left+right and top+bottom, excluding the middle size, to allow the drawable to be sized down as small as possible.
- Author:
- Nathan Sweet
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an uninitialized NinePatchDrawable.NinePatchDrawable
(NinePatch patch) NinePatchDrawable
(NinePatchDrawable drawable) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Draws this drawable at the specified bounds.void
draw
(Batch batch, float x, float y, float originX, float originY, float width, float height, float scaleX, float scaleY, float rotation) getPatch()
void
Sets this drawable's ninepatch and set the min width, min height, top height, right width, bottom height, and left width to the patch's padding.Creates a new drawable that renders the same as this drawable tinted the specified color.Methods inherited from class com.prineside.tdi2.scene2d.utils.BaseDrawable
getBottomHeight, getLeftWidth, getMinHeight, getMinWidth, getName, getRightWidth, getTopHeight, setBottomHeight, setLeftWidth, setMinHeight, setMinSize, setMinWidth, setName, setPadding, setRightWidth, setTopHeight, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.prineside.tdi2.scene2d.utils.Drawable
getBottomHeight, getLeftWidth, getMinHeight, getMinWidth, getRightWidth, getTopHeight, setBottomHeight, setLeftWidth, setMinHeight, setMinWidth, setRightWidth, setTopHeight
-
Constructor Details
-
NinePatchDrawable
public NinePatchDrawable()Creates an uninitialized NinePatchDrawable. The ninepatch must beset
before use. -
NinePatchDrawable
-
NinePatchDrawable
-
-
Method Details
-
draw
Description copied from interface:Drawable
Draws this drawable at the specified bounds. The drawable should be tinted withBatch.getColor()
, possibly by mixing its own color.- Specified by:
draw
in interfaceDrawable
- Overrides:
draw
in classBaseDrawable
-
draw
public void draw(Batch batch, float x, float y, float originX, float originY, float width, float height, float scaleX, float scaleY, float rotation) - Specified by:
draw
in interfaceTransformDrawable
-
setPatch
Sets this drawable's ninepatch and set the min width, min height, top height, right width, bottom height, and left width to the patch's padding. -
getPatch
-
tint
Creates a new drawable that renders the same as this drawable tinted the specified color.
-