我正在使用最近禁用抗锯齿功能的 Corona SDK,但无法重新启用它。我有几个使用旋转矩形和线条的应用程序,并且想要一种不看起来参差不齐的方法。这张图片显示了不同之处:
有没有办法在 Corona 中为这些矩形添加某种抗锯齿?我更喜欢抗锯齿黑客并能够使用新的 Corona 功能和修复,而不是使用具有抗锯齿功能的旧版本。]
谢谢!
我正在使用最近禁用抗锯齿功能的 Corona SDK,但无法重新启用它。我有几个使用旋转矩形和线条的应用程序,并且想要一种不看起来参差不齐的方法。这张图片显示了不同之处:
有没有办法在 Corona 中为这些矩形添加某种抗锯齿?我更喜欢抗锯齿黑客并能够使用新的 Corona 功能和修复,而不是使用具有抗锯齿功能的旧版本。]
谢谢!
您可以对矩形或图像使用蒙版,它可以最大限度地减少锯齿,是抗锯齿的一个很好的选择
我在没有面具的情况下测试了矩形,它很丑,当我添加面具时,它改善了矩形
display.newRect(0,0,320,480) --Background
local rmask = graphics.newMask( "mask.png" ) --Mask
local w = math.random(100,300) --Your random width of your rect
local h = math.random(100,300) --Your random height of your rect
local r = display.newRect(100,100,w,h) --Rect
r:setFillColor(0,0,0)
r:setMask(rmask)
--This will resize the mask to your rect's dimensions, make sure you know your mask's width and height
r.maskScaleX = w/200 --the 200 is the mask's width
r.maskScaleY = h/200 --the 200 is the mask's height
transition.to(r,{time = 100000, rotation = 360*10}) --To test the aliasing when it rotates
我用了这个面膜,你可以自己测试一下