我想移动具有不同x位置的块而不通过减小x位置来更改其形状。
我试图运行以下代码,但似乎块移动到拖曳位置的方式更快(正确的药水和其他我看不到的地方)。
downBlocks=new Arraylist<Rectangle>;
for (DownBlocks downBlocks:getBlocks()){
if(Gdx.input.isTouched()) {
Vector3 touchPos = new Vector3();
touchPos.set(Gdx.input.getX(), Gdx.input.getY(), 0);
camera.unproject(touchPos);
downBlocks.x = (int) touchPos.x - downBlocks.x;
}
}
温温酱
相关分类