Rect.x

var x : float

Description

Left coordinate of the rectangle.

JavaScript
var rect = Rect (10, 10, 100, 100);
print(rect.x);
rect.x = 20;