Package arc.scene.style
Class NinePatchDrawable
java.lang.Object
arc.scene.style.BaseDrawable
arc.scene.style.NinePatchDrawable
- All Implemented Interfaces:
Drawable
,TransformDrawable
- Direct Known Subclasses:
ScaledNinePatchDrawable
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.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreates an uninitialized NinePatchDrawable.NinePatchDrawable
(NinePatch patch) NinePatchDrawable
(NinePatchDrawable drawable) -
Method Summary
Modifier and TypeMethodDescriptionvoid
draw
(float x, float y, float width, float height) Draws this drawable at the specified bounds.void
draw
(float x, float y, float originX, float originY, float width, float height, float scaleX, float scaleY, float rotation) getPatch()
void
Creates a new drawable that renders the same as this drawable tinted the specified color.Methods inherited from class arc.scene.style.BaseDrawable
getBottomHeight, getLeftWidth, getMinHeight, getMinWidth, getName, getRightWidth, getTopHeight, setBottomHeight, setLeftWidth, setMinHeight, setMinWidth, setName, setRightWidth, setTopHeight, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface arc.scene.style.Drawable
getBottomHeight, getLeftWidth, getMinHeight, getMinWidth, getRightWidth, getTopHeight, imageSize, setBottomHeight, setLeftWidth, setMinHeight, setMinWidth, setRightWidth, setTopHeight
-
Field Details
-
patch
-
-
Constructor Details
-
NinePatchDrawable
public NinePatchDrawable()Creates an uninitialized NinePatchDrawable. The ninepatch must beset
before use. -
NinePatchDrawable
-
NinePatchDrawable
-
-
Method Details
-
draw
public void draw(float x, float y, float width, float height) Description copied from interface:Drawable
Draws this drawable at the specified bounds.- Specified by:
draw
in interfaceDrawable
- Overrides:
draw
in classBaseDrawable
-
draw
public void draw(float x, float y, float originX, float originY, float width, float height, float scaleX, float scaleY, float rotation) - Specified by:
draw
in interfaceDrawable
- Specified by:
draw
in interfaceTransformDrawable
- Overrides:
draw
in classBaseDrawable
-
getPatch
-
setPatch
-
tint
Creates a new drawable that renders the same as this drawable tinted the specified color.
-