How can I generate enemies from different positions on every time the games starts in corona . . . Any one can guide me 开发者_开发百科...? ThanksI assume you know how to create random numbers in Coro
I didn\'t understand some object position concepts in Corona SDK I have created sprite sheet: local spriteSheet = sprite.newSpriteSheet(\"button.png\", 138, 64);
Our application is receiving PDF file based on 150 pages from business line, I want to开发者_如何学JAVA extract pages from this pdf file using lua scripts.
I am working on a game using Corona sdk. I need to determine a swipe direction, so I can make a body object jump in that direction. I am using Ru开发者_如何学Gontime:addEventListener(\"touch\", moveCa
I have a big string (a base64 encoded image) and it is 1050 characters long. How can I append a big string formed of small ones, like this in 开发者_开发问答C
Here is a seemingly simple function to generate prime numbers. However, it does not work as expected. I have trawled the online guides but I can\'t seem to get my head around i开发者_如何学Pythont. Yo
I\'m having trouble locating how I g开发者_开发技巧o about getting the ip address of each client as they connect to my server, using LuaSockets;
What\'s the difference between normal opcodes and opcodes with their MSB (Most Significant Bit) set? Example:
function foo() return \"a\", \"b\", \"c\" end function bar() return foo() end function process() -- ... end function bar_store()
In C I can do following: #define S1(x) #x #define S(x) S1(x) #define foo(x) bar(x, S(x)) int obj = 3; foo(obj);