bevy/src/prelude.rs

59 lines
2.1 KiB
Rust
Raw Normal View History

pub use crate::{
app::{
schedule_runner::ScheduleRunnerPlugin, stage, App, AppBuilder, AppPlugin, DynamicAppPlugin,
EntityArchetype, EventReader, Events, FromResources, System,
},
2020-06-05 07:50:37 +00:00
asset::{AddAsset, AssetEvent, AssetServer, Assets, Handle},
core::{
time::{Time, Timer},
transform::{CommandBufferBuilderSource, WorldBuilder, WorldBuilderSource},
},
diagnostic::DiagnosticsPlugin,
input::{keyboard::KeyCode, mouse::MouseButton, Input},
math::{self, Mat3, Mat4, Quat, Vec2, Vec3, Vec4},
2020-06-05 07:50:37 +00:00
pbr::{entity::*, light::Light, material::StandardMaterial},
property::{DynamicProperties, Properties, PropertiesVal, Property, PropertyVal},
render::{
entity::*,
mesh::{shape, Mesh},
pipeline::PipelineDescriptor,
render_graph::{
nodes::{
AssetUniformNode, CameraNode, PassNode, UniformNode, WindowSwapChainNode,
WindowTextureNode,
},
RenderGraph,
},
render_resource::RenderResources,
2020-06-08 05:32:55 +00:00
shader::{Shader, ShaderDefs, ShaderStage, ShaderStages},
2020-06-06 02:38:03 +00:00
texture::Texture,
2020-06-05 07:50:37 +00:00
Camera, Color, ColorSource, OrthographicProjection, PerspectiveProjection, Renderable,
},
scene::{Scene, SceneSpawner},
sprite::{
entity::{SpriteEntity, SpriteSheetEntity},
2020-06-06 07:12:38 +00:00
ColorMaterial, Quad, Sprite, TextureAtlas, TextureAtlasSprite,
2020-06-05 07:50:37 +00:00
},
text::Font,
transform::prelude::*,
type_registry::RegisterType,
ui::{entity::*, widget::Label, Anchors, Margins, Node},
window::{Window, WindowDescriptor, WindowPlugin, Windows},
AddDefaultPlugins,
};
pub use legion::{
2020-05-14 00:52:47 +00:00
borrow::{Ref as Com, RefMut as ComMut},
2020-04-29 08:37:54 +00:00
command::CommandBuffer,
entity::Entity,
event::Event as LegionEvent,
filter::filter_fns::*,
2020-05-28 20:36:48 +00:00
query::{IntoQuery, Read, Tagged, TryRead, TryWrite, Write},
systems::{
bit_set::BitSet,
2020-05-01 05:30:51 +00:00
resource::{ResourceSet, Resources},
schedule::{Executor, Runnable, Schedulable, Schedule},
IntoSystem, Query, Res, ResMut, SubWorld, SystemBuilder,
},
world::{Universe, World},
};