So, I’ve just found Corona and have been exploring a bit, playing with the samples etc.
I really love the look of the SDK, but I have one problem.
I’m trying to port one of my flash platform games to devices and can’t seem to figure out how you can test platform game movement in the emulator, since you only get the onscreen touch controls.
Is there a way to link the computer keyboard to the emulator somehow, so I can test the left, right and jump movement by using the arrow keys?
How are you going to implement left right and jump on the device? If you’re going to use tilt, then the folks at MY Developers have a module that runs on our device and transmits its accelerometer data to the simulator using WiFi. But if you’re going to use an on screen virtual joystick/d-pad type system, those are touch events.
Thank you for the reply! I take it Corona doesn’t have a native way to do this then
Strange, I don’t really understand how people test their platform style games (maybe people don’t use Corona for that style of game).
The class you are working on looks very helpful. I’m looking at starting development of my port in the next couple of days, so I’m just wondering whether you have any idea when this might be available.
so far i have it down to 3 lines of code with no customization. using w,a,s,d for moved event, q for ended event, and e for began event of an object. now to add back in the tap event then to add mapping user defined keys to events
They test it by putting it on the device when needed. There are quite a few things in the Corona SDK library that only work on device, and while you can get most things going in the simulator, some things you just have to do on device.
How are you going to implement left right and jump on the device? If you’re going to use tilt, then the folks at MY Developers have a module that runs on our device and transmits its accelerometer data to the simulator using WiFi. But if you’re going to use an on screen virtual joystick/d-pad type system, those are touch events.
Thank you for the reply! I take it Corona doesn’t have a native way to do this then
Strange, I don’t really understand how people test their platform style games (maybe people don’t use Corona for that style of game).
The class you are working on looks very helpful. I’m looking at starting development of my port in the next couple of days, so I’m just wondering whether you have any idea when this might be available.
so far i have it down to 3 lines of code with no customization. using w,a,s,d for moved event, q for ended event, and e for began event of an object. now to add back in the tap event then to add mapping user defined keys to events
They test it by putting it on the device when needed. There are quite a few things in the Corona SDK library that only work on device, and while you can get most things going in the simulator, some things you just have to do on device.