If you’ve done any HTML work you’re probably familiar with setting colors using hexadecimal values, such as #FFFFFF for white, #000000 for black, and #FF30F0 for a weird pinkish-purple color. But in Corona SDK you set colors using those odd base-10 numbers, so that last color would be set using something like:
1 |
blob:setFillColor(255, 48, 249) |
I don’t […]