forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
32 lines (22 loc) · 678 Bytes
/
lib.rs
File metadata and controls
32 lines (22 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://bevy.org/assets/icon.png",
html_favicon_url = "https://bevy.org/assets/icon.png"
)]
//! This crate provides additional utilities for the [Bevy game engine](https://bevy.org),
//! focused on improving developer experience.
extern crate alloc;
#[cfg(feature = "bevy_ci_testing")]
pub mod ci_testing;
pub mod diagnostics_overlay;
mod easy_screenshot;
pub mod fps_overlay;
pub mod frame_time_graph;
pub mod picking_debug;
#[cfg(feature = "schedule_data")]
pub mod schedule_data;
pub mod states;
pub use easy_screenshot::*;
pub mod render_debug;
pub mod infinite_grid;