タッチパッドはエラーなしで表示されません。彼は「//タッチパッドスキンを作成する」の間に起動します。私は多くの方法を試しましたが、すべて間違っています。何が問題なのですか?
public WorldRenderer(World world) {
spriteBatch=new SpriteBatch();
this.world = world;
this.cam = new OrthographicCamera(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
SetCamera(CAMERA_WIDTH / 2f, CAMERA_HEIGHT / 2f);
loadTextures();
//Create a touchpad skin
Texture touchpadTexture = new Texture(Gdx.files.internal("data/touchpad.png"));
touchpadTexture.setFilter(TextureFilter.Linear, TextureFilter.Linear);
TextureRegion background = new TextureRegion(touchpadTexture, 0, 0, 75, 75);
TextureRegion knob = new TextureRegion(touchpadTexture, 80, 0, 120, 120);
TextureRegionDrawable backgroundDrawable = new TextureRegionDrawable(background);
TextureRegionDrawable knobDrawable = new TextureRegionDrawable(knob);
Touchpad touchpad = new Touchpad(10, new Touchpad.TouchpadStyle(backgroundDrawable, knobDrawable));
touchpad.setBounds(15, 15, 200, 200);
world.addActor(touchpad);
//Create a touchpad skin
}