java Libgdx spawn batch Texture in a if

bbmckpt7  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(163)

我想在一个if问题中生成一个纹理。但是它没有生成。下面是我的代码

  1. if (Gdx.input.isKeyJustPressed(Input.Keys.SPACE))
  2. {
  3. clicks ++;
  4. System.out.println(clicks);
  5. if (clicks == 50)
  6. {
  7. batch.begin();
  8. batch.draw(spider, 100, 100);
  9. batch.end();
  10. System.out.println("you have 50");`
  11. }

字符串
在日志中,我看到你有50个文本。但没有产卵。
问候Marcel 1510
没什么我不知道我能做什么。

b0zn9rqh

b0zn9rqh1#

你应该在batch开始和结束方法之间移动init()方法中的if语句。像这样:

  1. private void init(){
  2. ...
  3. batch.begin();
  4. if (Gdx.input.isKeyJustPressed(Input.Keys.SPACE)) {
  5. clicks ++;
  6. System.out.println(clicks);
  7. if (clicks == 50) {
  8. batch.draw(spider, 100, 100)
  9. System.out.println("you have 50");`
  10. }
  11. ...
  12. }
  13. ...
  14. batch.end();
  15. }

字符串

展开查看全部

相关问题