我试图检查演员是否存在但到目前为止没有运气。我的代码如下所示:
if (prize.getStage() == null)
System.out.println("not on stage");
else
System.out.println("on stage");
根据此链接中的答案: libGDX : How check if the actor exist on stage or not
但是我收到以下错误: “LWJGL Application”java.lang.NullPointerException
有没有人知道我做错了什么,或者是否有其他好方法可以检查演员是否在舞台上?
答案 0 :(得分:0)
正如Abhishek Aryan所说,我的奖品是空的。我所要做的就是确保奖品被初始化。 我很傻。