Interface PixiBridge.PixiDisplayObject
- All Superinterfaces:
org.teavm.jso.JSObject
- Enclosing interface:
PixiBridge
public static interface PixiBridge.PixiDisplayObject
extends org.teavm.jso.JSObject
-
Method Summary
Modifier and TypeMethodDescriptionvoidvoidbeginFill(int color, float alpha) voidclear()voiddrawCircle(float x, float y, float radius) voiddrawPolygon(float[] points) voiddrawRect(float x, float y, float width, float height) voidendFill()getScale()booleanvoidlineStyle(int thickness, int color) voidlineTo(float x, float y) voidmoveTo(float x, float y) voidvoidsetAlpha(float alpha) voidsetAngle(float angle) voidsetOriginalTexture(PixiBridge.PixiTexture texture) voidvoidsetTexture(PixiBridge.PixiTexture texture) voidsetTintEnabled(boolean tintEnabled) voidsetVisible(boolean visible) voidsetX(float x) voidsetY(float y) Methods inherited from interface org.teavm.jso.JSObject
cast
-
Method Details
-
setVisible
void setVisible(boolean visible) -
setX
void setX(float x) -
setY
void setY(float y) -
setAlpha
void setAlpha(float alpha) -
setAngle
void setAngle(float angle) -
getScale
PixiBridge.PixiDisplayObject getScale() -
setText
-
setTexture
-
getTexture
PixiBridge.PixiTexture getTexture() -
setTintEnabled
void setTintEnabled(boolean tintEnabled) -
isTintEnabled
boolean isTintEnabled() -
getOriginalTexture
PixiBridge.PixiTexture getOriginalTexture() -
setOriginalTexture
-
getChildren
PixiBridge.PixiDisplayObject[] getChildren() -
addChild
-
removeChild
-
beginFill
void beginFill(int color, float alpha) -
drawRect
void drawRect(float x, float y, float width, float height) -
drawCircle
void drawCircle(float x, float y, float radius) -
drawPolygon
void drawPolygon(float[] points) -
endFill
void endFill() -
clear
void clear() -
lineStyle
void lineStyle(int thickness, int color) -
moveTo
void moveTo(float x, float y) -
lineTo
void lineTo(float x, float y)
-