Actor 클래스를 확장하고 드로잉을위한 고유 한 메서드를 구현하여 ImageButton의 고유 한 버전을 만들 수 있습니다. 아래의 예는 테스트하지 않고 당신과 당신 자신의 사용자 정의 버튼을 만드는 방법에 대한 아이디어를 제공해야합니다 :은`draw` 메서드를 재정 실제로 훌륭하게 간단한 아이디어입니다
private class LayeredButton extends Actor{
private int width = 100;
private int height = 75;
private Texture backGround;
private Texture foreGround;
private Texture outline;
public LayeredButton(Texture bg, Texture fg, Texture ol){
setBounds(this.getX(),this.getY(),this.width,this.height);
backGround = bg;
foreGround = fg;
outline = ol;
addListener(new InputListener(){
public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) {
// do something on click here
return true;
}
});
}
@Override
public void draw(Batch batch, float alpha){
// draw from back to front
batch.draw(backGround,this.getX(),this.getY());
batch.draw(foreGround,this.getX(),this.getY());
batch.draw(outline,this.getX(),this.getY());
}
@Override
public void act(float delta){
// do stuff to button
}
}
합니다. 고맙습니다. –