2017-05-02 22 views
0

다양한 배경색과 외곽선의 조합으로 다양한 버튼을 생성해야하는 게임을 디자인하고 있습니다. 나는 이미 배경에 대한 스프라이트와 윤곽선에 대한 스프라이트를 가지고 각각에 색조를 적용한다.LibGDX에서 여러 스프라이트/텍스처 레이어로 ImageButton을 만드는 방법은 무엇입니까?

나는 이미 SpriteBatch에 가입하려고했지만 ImageButton이 지원하는 구조로 변환하지 않았다.

미리 감사드립니다.

답변

0

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 
    } 
} 
+0

합니다. 고맙습니다. –