From f525b27465ca2bb209e68bfc5f35cecad0ffefdf Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Thu, 18 Jan 2024 16:22:01 -0800 Subject: [PATCH] Fix broken doc links --- src/input.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input.rs b/src/input.rs index 2ee9bfe..039f925 100644 --- a/src/input.rs +++ b/src/input.rs @@ -92,7 +92,7 @@ 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); @@ -100,7 +100,7 @@ pub struct CameraPointerMap(HashMap); #[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,