我有一个简单的box2d世界,平台和相机跟踪播放器。当我触摸屏幕的一侧时,我正试图获得触摸输入控制,但感觉比我想象的要复杂。触摸屏幕偶尔移动框,但从来没有当我到达我期望的地方,并试图通过绘制图片调试,我触摸只会导致更多的混乱。这是带摄像头或触摸式监听的所有代码
创建方法
public void create () {
float w = Gdx.graphics.getWidth();
float h = Gdx.graphics.getHeight();
Gdx.input.setInputProcessor(new MyInputProcessor());
camera = new OrthographicCamera();
camera.setToOrtho(false, w/2, h/2);
touchpos = new Vector3();
world = new World(new Vector2(0, -9.8f), false);
b2dr = new Box2DDebugRenderer();
player = createBox(8, 10, 32, 32, false);
platform = createBox(0, 0, 64, 32, true);
}
渲染方法
public void render () {
update(Gdx.graphics.getDeltaTime());
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
b2dr.render(world, camera.combined.scl(PPM));
}
调整大小
public void resize(int width, int height) {
camera.setToOrtho(false, width / 2, height / 2);
}
相机更新
public void cameraUpdate(float delta){
Vector3 position = camera.position;
position.x = player.getPosition().x * PPM;
position.y = player.getPosition().y * PPM;
camera.position.set(position);
camera.update();
}
触摸输入法和数学
@Override
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
touchpos.set(screenX, screenY, 0);
camera.unproject(touchpos);
if (touchpos.x > 500){
touchleft = true;
}
else touchleft = false;
if (touchpos.x < 300){
touchright = true;
}
else touchright = false;
if (300 < touchpos.x && touchpos.x < 500){
touchcenter = true;
}
else touchcenter = false;
return true;
}
我认为它应该像使用原始触摸值一样简单而不会弄乱相机,因为我希望用于控制的区域始终相同但不起作用,所以我采取谷歌并尝试取消投影和做其他摆弄相机,但触摸从未奏效。
我觉得答案应该很简单。我只需要在屏幕的左侧或右侧检测到触摸,以便将相应的变量设置为true
如果有经验丰富的人可以看到我非常欣赏的错误
答案 0 :(得分:1)
scl()转换Matrix4(camera.combined)值,所以不要缩放camera.combined。
float w = Gdx.graphics.getWidth();
float h = Gdx.graphics.getHeight();
camera = new OrthographicCamera(30, 30 * (h / w));
public void render () {
update(Gdx.graphics.getDeltaTime());
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
b2dr.render(world, camera.combined);
}
你将使用物理学,所以保持移动物体的大小大约介于0.1到10米之间,而不是大于10。
如果你想绘制图像,只需将box2d维度缩放30并获得以像素为单位的维度。
对于触摸,您可以根据设备宽度和高度设置视口,并在预定义值上应用条件。
@Override
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
touchpos.set(screenX, screenY, 0);
camera.unproject(touchpos);
if (touchpos.x > camera.viewportWidth*.8f){
touchleft = true;
}
else touchleft = false;
if (touchpos.x < camera.viewportWidth*.2f){
touchright = true;
}
else touchright = false;
if (camera.viewportWidth*.2f< touchpos.x && touchpos.x < camera.viewportWidth*.8f){
touchcenter = true;
}
else touchcenter = false;
return true;
}