copyWithPose method
Returns a new camera with updated position and rotation.
Implementation
Camera copyWithPose({
required Vector3 position,
required Matrix3 rotation,
}) {
return copyWith(position: position, rotation: rotation);
}
Returns a new camera with updated position and rotation.
Camera copyWithPose({
required Vector3 position,
required Matrix3 rotation,
}) {
return copyWith(position: position, rotation: rotation);
}