Skip to content

Commit

Permalink
Merge pull request #71 from BlackPhlox/main
Browse files Browse the repository at this point in the history
Sync with main
  • Loading branch information
BlackPhlox authored Dec 21, 2024
2 parents c2c5e28 + a8ee27b commit cd841b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Dolly operates in two essential steps:

## Understanding Drivers

Drivers are mechanisms that influence the behavior of the camera. They can represent constraints or provide additional functionality. To explore the available drivers, refer to the [examples](example-showcase).
Drivers are mechanisms that influence the behavior of the camera. They can represent constraints or provide additional functionality. To explore the available drivers, refer to the [examples](#example-showcase).

In your `Cargo.toml`:

Expand Down
15 changes: 8 additions & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ pub mod helpers;
pub mod system;

pub mod prelude {
pub use crate::{
dolly::prelude::*,
dolly_type::*,
drivers::{follow::*, fpv::*},
helpers::*,
helpers::{cone::*, cursor_grab::*, pos_ctrl::*},
system::*,
pub use crate::{dolly::prelude::*, dolly_type::*, system::*};

#[cfg(feature = "drivers")]
pub use crate::drivers::{follow::*, fpv::*};
#[cfg(feature = "helpers")]
pub use crate::helpers::{
*,
{cone::*, cursor_grab::*, pos_ctrl::*},
};
}

0 comments on commit cd841b8

Please sign in to comment.