13

我很难让事件与我Actor的 libgdx 一起工作。我正在使用每晚构建。

我的舞台是在子类的show()方法中设置的Screen

stage = new Stage(Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), true);
Gdx.input.setInputProcessor(stage);  
TestActor actor = new TestActor(); 
stage.addActor(actor);

我的演员班看起来像:

class TestActor extends Actor {
    private Sprite sprite;
    private TextureAtlas atlas; 

    public TestActor() {   
        atlas = new TextureAtlas(Gdx.files.internal("textures/images-packed.atlas"));
        sprite = atlas.createSprite("logo-96");

        setTouchable(Touchable.enabled);
        addListener(new InputListener() {
            public boolean touchDown (InputEvent event, float x, float y, int pointer, int button) {
                Gdx.app.debug(TestGame.TAG, "TestActor.touchDown()");
                return true;  // must return true for touchUp event to occur
            }
            public void touchUp (InputEvent event, float x, float y, int pointer, int button) {
                Gdx.app.debug(TestGame.TAG, "TestActor.touchUp()");
            }
        });
    }

    @Override
    public void draw(SpriteBatch batch, float parentAlpha) {
        Color color = getColor();
        batch.setColor(color.r, color.g, color.b, color.a * parentAlpha);
        batch.draw(sprite, getX(), getY());
    }            
}

这些事件似乎没有触发。奇怪的是,我使用了内置的 UI 小部件,例如TextButton并且可以很好地触发这些事件。谁能看到我做错了什么?

4

1 回答 1

16

您还应该为您的演员设置边界。最好的方法(如果您想要与纹理相同的大小)将这些行添加到您的构造函数中:

setWidth(sprite.getWidth());
setHeight(sprite.getHeight());
setBounds(0, 0, getWidth(), getHeight());

请注意,您还可以使用前 2 个参数设置边界的位置。

于 2012-09-19T14:20:18.260 回答