Skip to content Skip to sidebar Skip to footer

What Is A Possible Way To Make Game Graphics For Corona Sdk?

I have been developing a simple iPhone/Android game with Corona SDK. The game itself does not use imported graphics, only regular shapes. Now, I am faced with the problem of maki

Solution 1:

I don't really understand what you mean, could you give some examples?

Maybe this?

local options = {
    defaultFile = image_path,
    overFile = image_path_o,
    onRelease = function()--code hereend
}

local img_button = widget.newButton(options)

Post a Comment for "What Is A Possible Way To Make Game Graphics For Corona Sdk?"