Mar 11, 2018 corona-sdk fade lua transition Fade colors in Corona using Transitions Corona provides transitions. According to this post, a transitionTo(...) would suffice: local rect = display.newRect(50,50,100,100) rect:setFillColor(0,0,0,0)
Mar 11, 2018 color corona-sdk fade lua polygon Fade Colors on a Polygon using the Game Loop One of the features I need to implement is to smoothly change the fill/stroke color of a polygon, like this: A manual approach In
Feb 28, 2018 antialias corona-sdk game polygon Antialias a Polygon with Corona SDK The other day I figured I needed to draw a polygon in Corona SDK. With display.newPolygon(...), the job is extremely easy and a result