Beginners guide to 3D programming in IPhone SDK

后端 未结 3 1338
失恋的感觉
失恋的感觉 2021-02-06 08:30

I\'m thinking of starting a project to make a game, maybe just a simple one, but still a game in 3D for the IPhone.

Though i still have a long way to go, learning object

3条回答
  •  暖寄归人
    2021-02-06 08:41

    Well, OpenGLES is a subset of OpenGL, so in case you had already known OpenGL it would be easier for you to switch to ES. To be honest, I don't know if it's worse or better approach to start with OpenGL for PC. What can be important on the other hand is the environment. If you want to implement some game for mobile device you have to consider limited resources, you would have to focus more on the optimization etc. So it would be probably better to start from learning openGL for embedded systems.

    BTW, there is a really great OpenGLES tutorial for beginners. Code examples are written in Objective-C. http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html

    Regards!

提交回复
热议问题