私は、人が最後に触れた場所にオブジェクトを表示させようとしています。しかし、私がそうしようとすると、それは間違った場所に現れます。次のように私はこれが原因で入力が返された座標が表示座標に異なっているという事実であると仮定し、私のコードは次のとおりです。スクリーン座標にピクセル座標を適用する
public class Core implements ApplicationListener, InputProcessor
{ //Has to be here otherwise the code formatting becomes buggy
private Mesh squareMesh;
private PerspectiveCamera camera;
private Texture texture;
private SpriteBatch spriteBatch;
Sprite sprite;
float moveX = 0;
private final Matrix4 viewMatrix = new Matrix4();
private final Matrix4 transformMatrix = new Matrix4();
@Override
public void create()
{
Gdx.input.setInputProcessor(this);
texture = new Texture(Gdx.files.internal("door.png"));
spriteBatch = new SpriteBatch();
sprite = new Sprite(texture);
sprite.setPosition(0, 0);
viewMatrix.setToOrtho2D(0, 0, 480, 320);
float x = 0;
float y = 0;
}
@Override
public void dispose()
{
}
@Override
public void pause()
{
}
@Override
public void render()
{
viewMatrix.setToOrtho2D(0, 0, 480, 320);
spriteBatch.setProjectionMatrix(viewMatrix);
spriteBatch.setTransformMatrix(transformMatrix);
spriteBatch.begin();
spriteBatch.disableBlending();
spriteBatch.setColor(Color.WHITE);
Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
//spriteBatch.draw(texture, 0, 0, 1, 1, 0, 0, texture.getWidth(),
// texture.getHeight(), false, false);
sprite.draw(spriteBatch);
spriteBatch.end();
update();
}
@Override
public void resize(int width, int height)
{
float aspectRatio = (float) width/(float) height;
camera = new PerspectiveCamera(67, 2f * aspectRatio, 2f);
}
@Override
public void resume()
{
}
public void update()
{
float delta = Gdx.graphics.getDeltaTime();
if(Gdx.input.isTouched())
{
Vector3 worldCoordinates = new Vector3(sprite.getX(), sprite.getY(), 0);
camera.unproject(worldCoordinates);
sprite.setPosition(Gdx.input.getX(), Gdx.input.getY());
float moveX = 0;
float moveY = 0;
}
}
私はsimplictyのためにこのコードをトリミング。 http://www.youtube.com/watch?v=m89LpwMkneI
これは正解でなければなりません。 – HAL9000
受け入れられた解決策を試しましたが、画面の解像度が変更されると面倒です。これは、必要な計算をすべて書き直したくない場合に行く方法です。 – MxyL
私は受け入れられた答えを変更しました。これは私が最初の答えを受け入れた後に掲載されました。 – Derek