position property

Vector2 get position

Implementation

Vector2 get position => _position;
set position (Vector2 position)

Implementation

set position(Vector2 position) {
  _position = position;
  _dirty = true;
}