Skip to content

Commit

Permalink
doc: improve doc gen time by removing bevy_vello::prelude re-export i…
Browse files Browse the repository at this point in the history
…n prelude mod
  • Loading branch information
nixon-voxell committed Jul 31, 2024
1 parent 0a821b0 commit 68a5cb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
//!
//! A Bevy friendly wrapper around [Vello][vello] graphics.
pub use bevy_vello;

use std::marker::PhantomData;

use bevy_app::prelude::*;
use bevy_ecs::prelude::*;
pub use bevy_vello;
use bevy_vello::prelude::*;

use bevy_vello::VelloPlugin;
use head::{draw_heads, prepare_heads, HeadScene};
Expand Down Expand Up @@ -36,8 +38,6 @@ pub mod prelude {
vector::Vector,
VelloGraphicsPlugin,
};

pub use bevy_vello::prelude::*;
}

/// A plugin that automates the pipeline of drawing and compositing vello shapes.
Expand Down

0 comments on commit 68a5cb2

Please sign in to comment.