The currently active Camera, or null if not set.
null
Camera? get camera => _camera;
Sets the active Camera and updates matrices.
set camera(Camera? camera) { if (camera == _camera) return; _camera = camera; _updateViewMatrix(); _updateProjectionMatrix(); }