Develop Games for IOS/Android devices? [closed]
I started learning about lua language to develop games,i percept that most people uses Corona SDK to do so.I want to know if there is another program that i don't have to pay the annual tax of $199 to build and send the app to Apple? Is possible to develop this type in Xcode?
Xcode is an IDE for C, C++ and Objective variants of those languages. It has no (direct) support for Lua.
Now, you could certainly write Lua interfaces for many of the functions that an iOS application has to handle. In that way, you could then code your application in Lua and just have a small stub of C/C++/Objective-C/etc code to get your application going.
However, Corona is rather more than just a simple stub. It includes a number of frameworks that make development, not merely possible, but easier. If you're going to forgo Corona, you'll have to develop those frameworks yourself, either in Lua or C/C++/etc.
精彩评论