Parent Path Library display.* Revision Release 2024.3703 See also display.newRect() Perspective and Depth (guide)
The rectangle path specifies the geometry of the corresponding rectangle object.
This path has limited properties which let you manipulate specific aspects of the shape object. These aspects can either be set explicitly or animated via a transition.
(Inherits properties from Path)
Number. Height of the rectangle.
Number. Width of the rectangle.
The following properties allow you to distort the corners of a rectangle by specifying offsets. The corners are ordered starting with the
Learn more about 2.5D/3D effects in the Perspective and Depth guide.
Numbers. The offset for the top-left corner. Defaults are 0,0
.
Numbers. The offset for the bottom-left corner. Defaults are 0,0
.
Numbers. The offset for the bottom-right corner. Defaults are 0,0
.
local rect = display.newRect( 160, 240, 150, 50 ) rect.path.x1 = -50 transition.to( rect.path, { time=2000, height=100, x1=0 } )