position property

Vector3 get position

Implementation

Vector3 get position => _position;
set position (Vector3 v)

Implementation

set position(Vector3 v) {
  _position = v;
  _dirty = true;
}