I have searched a ton and even upgraded to graphics 2.0 since I read that antialiasing of vector shapes was now working in Corona. That being said, everything is still either pixelated (in the simulator and my phone) or polygonal (on my Nexus 7).
I have antialiasing turned on in the config file, but did not change any of my draw circle code:
config.lua
application = {
content = {
width = 320,
height = 480,
scale = "letterBox",
fps = 60,
antialias = true,
xalign = "center",
yalign = "center",
imageSuffix = {
["@2x"] = 2
}
}
}
main.lua
local function newDot (i,j)
local newCircle = display.newCircle( i*40-20, -60, 15)
newCircle:setFillColor( .2, .6, .86 )
return newDot
end
Should this create antialiased circles?
Thanks!