|
|
|
|
@ -11,8 +11,9 @@ mod version;
|
|
|
|
|
pub use std::fmt::Display;
|
|
|
|
|
|
|
|
|
|
pub use bevy::{
|
|
|
|
|
asset::LoadState,
|
|
|
|
|
color::palettes::css::{BLACK, BLUE, GREEN, RED, WHITE},
|
|
|
|
|
asset::{AssetLoader, LoadContext, LoadState, LoadedFolder, io::Reader},
|
|
|
|
|
color::palettes::css::*,
|
|
|
|
|
gizmos::{aabb::AabbGizmoPlugin, light::LightGizmoPlugin},
|
|
|
|
|
input::{
|
|
|
|
|
ButtonState,
|
|
|
|
|
common_conditions::{input_just_pressed, input_pressed},
|
|
|
|
|
@ -20,9 +21,15 @@ pub use bevy::{
|
|
|
|
|
mouse::MouseMotion,
|
|
|
|
|
mouse::{MouseScrollUnit, MouseWheel},
|
|
|
|
|
},
|
|
|
|
|
pbr::wireframe::{WireframeConfig, WireframePlugin},
|
|
|
|
|
platform::collections::HashMap,
|
|
|
|
|
prelude::*,
|
|
|
|
|
reflect::TypePath,
|
|
|
|
|
window::WindowResized,
|
|
|
|
|
};
|
|
|
|
|
pub use bevy_rapier3d::prelude::*;
|
|
|
|
|
pub use serde::Deserialize;
|
|
|
|
|
pub use thiserror::Error;
|
|
|
|
|
|
|
|
|
|
pub use base_game::*;
|
|
|
|
|
pub use debug::*;
|
|
|
|
|
|