target property

Vector3 get target

The point the camera orbits (its eased, current value).

Implementation

Vector3 get target => _target.clone();
set target (Vector3 value)

Implementation

set target(Vector3 value) {
  _target = value.clone();
  _targetGoal = value.clone();
}