//! Camera tracking binding for follow-camera behavior.
use crateNodeId;
/// Camera tracking mode for [`super::ViewportRuntime`].
///
/// When set, the runtime computes a suggested camera center after each step
/// and emits it as a [`super::CameraFollowTarget`] event on
/// [`super::RuntimeOutput::events`]. The app reads the event by calling
/// `output.events.read::<CameraFollowTarget>()` and applies the suggestion
/// however fits the application (typically by setting `camera.center`).
///
/// Set via [`super::ViewportRuntime::set_camera_follow`] or
/// [`super::ViewportRuntime::with_camera_follow`].