up property
override
The world-space up direction used to orient the camera around forward.
Implementation
@override
Vector3 get up {
final transform = _worldTransform;
return Vector3(transform[4], transform[5], transform[6]).normalized();
}