我的第一个游戏:使用 pygame 的 Python 与使用 lwjgl 的 Java?
我的游戏是一个简单的 2D 塔防类型游戏。它应该有一些动画和声音。我只学过 Java,所以选择这个选项似乎是一个巨大的优势。但我对编程还很陌生,所以我想切换不会是一个大问题。
根据我有限的研究,使用 pygame 的 Python 或使用 lwjgl 的 Java 似乎最适合我的游戏类型。
你有什么想法?一种相对于另一种的好处?其他建议?
My game would be a simple 2D tower defense type game. It should have some animations and sounds. I've only learned Java so this seems like a huge plus for choosing that option. But I'm fairly new to programming so i suppose it wont be a huge problem to switch.
From my limited research, either Python using pygame or Java using lwjgl seems to be best suited for my kind of game.
What are your thoughts? Benefits of one over the other? Other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java + LWJGL 的级别非常低,您必须自己编写大量声音和动画代码。更好的选择是 Java + Slick2D(LWJGL 之上的 2d 库)。您可以在 http://slick.cokeandcode.com 找到它
Java + LWJGL is very low level and you'll have to write a lot of the sound and animation code yourself. A better choice would be Java + Slick2D (a 2d library on top of LWJGL). You can find it at http://slick.cokeandcode.com
对于您想做的游戏类型,Pygame 的一个好处是 Python Pygame 塔防项目 对于您想要做的事情来说,这可能是一个非常好的教程,不是吗?
A benefit from Pygame for the kind of game you want to do is the Python Pygame Tower Defense project that could be a pretty good tutorial for what you want to do, isn't it ?