我正在努力知道哪个手指被释放。 我已经阅读了本教程http://code.google.com/p/libgdx/wiki/InputPolling
这是我使用InputProcessor接口的代码:
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
debug_pointer = pointer;
}
public boolean touchUp(int screenX, int screenY, int pointer, int button) {
debug_pointer = pointer;
}
当我按下1个手指时:debug_pointer = 0 ;
当我按下另一根手指时:debug_pointer = 1 ;
(现在没关系)
但如果释放第一个 OR 第二个手指:debug_pointer = 0 ;
我除了debug_pointer将是: 1 如果我发布第二根手指
如果是第一个或第二个手指被释放,我不知道这个返回的号码
我怎么知道哪个手指被释放?