y property

  1. @override
num y
override

The y-coordinate of this display object relative to the local coordinates of the parent DisplayObjectContainer.

If the object is inside a DisplayObjectContainer that has transformations, it is in the local coordinate system of the enclosing DisplayObjectContainer.

Implementation

@override
num get y => _y;
  1. @override
void y=(num value)
override

Implementation

@override
set y(num value) {
  _y = value;
  _transformationMatrixRefresh = true;
}