offset property

Vector2 get offset

Implementation

Vector2 get offset => _offset;
set offset (Vector2 next)

Implementation

set offset(Vector2 next) {
  _offset = next.clone();
  _matrixCached = false;
}