jbullet+lwjgl 异常?
Exception with jbullet+lwjgl?
我在 eclipse 中使用 jbullet 和 lwjgl 尝试 运行 我相当 "hello world" 大小的项目时出现异常
Exception in thread "main" java.lang.NullPointerException
at gameVroom.Objects.ground(Objects.java:42)
at gameVroom.MainThing.gameLoop(MainThing.java:50)
at gameVroom.MainThing.main(MainThing.java:104)
这是源代码(再一次,非常小,我不会放弃完整的游戏来浏览。另外,如果有更好的地方或方式来问这个,请告诉我。)
空指针表示某些内容未正确初始化。确保(如果使用集合)所有内容都已正确分配到所述集合中。
我在 eclipse 中使用 jbullet 和 lwjgl 尝试 运行 我相当 "hello world" 大小的项目时出现异常
Exception in thread "main" java.lang.NullPointerException
at gameVroom.Objects.ground(Objects.java:42)
at gameVroom.MainThing.gameLoop(MainThing.java:50)
at gameVroom.MainThing.main(MainThing.java:104)
这是源代码(再一次,非常小,我不会放弃完整的游戏来浏览。另外,如果有更好的地方或方式来问这个,请告诉我。)
空指针表示某些内容未正确初始化。确保(如果使用集合)所有内容都已正确分配到所述集合中。