TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What do I need to learn for mobile app game development?

7 点作者 misham将近 14 年前
I'm interested in developing games for mobile apps, both iOS and Android. Apart from learning iOS and Android development, what other technologies do I need to learn?<p>I have a CS degree and I know C, C++ and Java. What else do I need to know?<p>Thank you

2 条评论

cpeterso将近 14 年前
If you would like to develop cross-platform games, I would recommend checking out Ansca Mobile's "Corona", a Lua SDK for iOS and Android. Corona is mostly focused on game development, with libraries for things like animation, physics, and in-app purchases. The Lua is a popular scripting language in the commercial game industry (e.g. WoW extensions are written in Lua).
评论 #2627781 未加载
dtwwtd将近 14 年前
I'd say learning OpenGL would be a good thing. The OpenGL ES 2.0 spec is supported on both iOS and Android and you can write in C++ for both. It might be more practical use some engine, but if you want to understand what is happening under the covers then this is the best way to do it. Plus, shaders are really powerful.<p>Hope that helps!<p>Edit: Here's a tutorial that I've been going through myself recently. It's taught on a desktop but everything is applicable to mobile as well. <a href="http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Table-of-Contents.html" rel="nofollow">http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Tab...</a>