Skip to content

Commit

Permalink
Fix broken doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Jan 19, 2024
1 parent cffbebe commit f525b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ pub fn default_camera_inputs(
/// Maps pointers to the camera they are currently controlling.
///
/// This is needed so we can automatically track pointer movements and update camera movement after
/// a [`CameraControllerEvent::Start`] has been received.
/// a [`EditorCamInputEvent::Start`] has been received.
#[derive(Debug, Clone, Default, Deref, DerefMut, Reflect, Resource)]
pub struct CameraPointerMap(HashMap<PointerId, Entity>);

/// Events used when implementing input systems for the [`EditorCam`].
#[derive(Debug, Clone, Reflect, Event)]
pub enum EditorCamInputEvent {
/// Send this event to start moving the camera. The anchor and inputs will be computed
/// automatically until the [`CameraControllerEvent::End`] event is received.
/// automatically until the [`EditorCamInputEvent::End`] event is received.
Start {
/// The kind of camera movement that is being started.
kind: MotionKind,
Expand Down

0 comments on commit f525b27

Please sign in to comment.