bevy/crates/bevy_pbr/src/lib.rs

33 lines
955 B
Rust
Raw Normal View History

pub mod entity;
pub mod light;
pub mod material;
pub mod nodes;
pub mod passes;
pub mod pipelines;
mod forward_pbr_render_graph;
pub use forward_pbr_render_graph::*;
2020-04-25 01:55:15 +00:00
use bevy_app::{stage, AppBuilder, AppPlugin};
use bevy_asset::AssetStorage;
use bevy_render::{render_graph::RenderGraph, shader};
use legion::prelude::IntoSystem;
2020-05-01 08:50:07 +00:00
use material::StandardMaterial;
#[derive(Default)]
pub struct PbrPlugin;
// NOTE: this isn't PBR yet. consider this name "aspirational" :)
impl AppPlugin for PbrPlugin {
fn build(&self, app: &mut AppBuilder) {
app.add_resource(AssetStorage::<StandardMaterial>::new())
.add_system_to_stage(
stage::POST_UPDATE,
shader::asset_handle_shader_def_system::<StandardMaterial>.system(),
);
let resources = app.resources();
let mut render_graph = resources.get_mut::<RenderGraph>().unwrap();
render_graph.add_pbr_graph(resources);
}
}