Тачпад не отображается без ошибок. Он запускается между «// Создание скина сенсорной панели». Я пробовал много способов, но все не так. Что там не так?android libgdx touchpad
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
}