我有一个处理触摸输入的Stage
类。
在Screen
课程中,我将stage
设为InputProcessor
:
stageTest = new StageTest(new ScreenViewport());
Gdx.input.setInputProcessor(stageHUD);
但是现在我想向Box2d对象添加一个力,总是会发生手势输入。
public class ActSwipe extends Actor {
private int tmpPointer;
private float
tmpX,
tmpY,
deltaX,
deltaY,
rad;
protected float
forceX,
forceY;
public ActSwipe() {
this.setName("SwipeAction");
this.setTouchable(Touchable.enabled);
this.addListener(new InputListener() {
@Override
public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
if(tmpPointer == 0) {
tmpPointer = pointer;
tmpX = x;
tmpY = y;
}
return true;
}
@Override
public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
if (tmpPointer == pointer) {
tmpPointer = 0;
deltaX = x - tmpX;
deltaY = y - tmpY;
rad = (float) Math.atan2(deltaY, deltaX);
forceX = (float) Math.cos(rad);
forceY = (float) Math.sin(rad);
}
}
});
}
}
答案 0 :(得分:1)
您可以在屏幕中实施InputProcessor(或扩展InputAdapter)并使用您的代码覆盖其方法。
然后像这样使用InputMultiplexer:
InputMultiplexer multiplexer = new InputMultiplexer();
Gdx.input.setInputProcessor(multiplexer);
multiplexer.addProcessor(this);
multiplexer.addProcessor(stage)
在重写的方法中,您需要确保被击中的对象是应由输入处理器处理的对象,而不是场景中的对象。如果是这样,则从方法返回true,因此事件不会传递给后者。