2020-04-25 00:46:54 +00:00
|
|
|
pub mod entity;
|
|
|
|
pub mod light;
|
|
|
|
pub mod material;
|
|
|
|
pub mod nodes;
|
|
|
|
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};
|
2020-05-13 23:17:44 +00:00
|
|
|
use bevy_asset::AddAsset;
|
2020-04-25 00:46:54 +00:00
|
|
|
use bevy_render::{render_graph::RenderGraph, shader};
|
2020-05-01 08:37:20 +00:00
|
|
|
use legion::prelude::IntoSystem;
|
2020-05-01 08:50:07 +00:00
|
|
|
use material::StandardMaterial;
|
2020-04-25 00:46:54 +00:00
|
|
|
|
2020-05-03 17:54:30 +00:00
|
|
|
/// NOTE: this isn't PBR yet. consider this name "aspirational" :)
|
2020-04-25 00:46:54 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct PbrPlugin;
|
|
|
|
|
|
|
|
impl AppPlugin for PbrPlugin {
|
|
|
|
fn build(&self, app: &mut AppBuilder) {
|
2020-05-13 23:17:44 +00:00
|
|
|
app.add_asset::<StandardMaterial>().add_system_to_stage(
|
|
|
|
stage::POST_UPDATE,
|
2020-05-14 00:31:56 +00:00
|
|
|
shader::asset_shader_def_system::<StandardMaterial>.system(),
|
2020-05-13 23:17:44 +00:00
|
|
|
);
|
2020-04-25 00:46:54 +00:00
|
|
|
let resources = app.resources();
|
|
|
|
let mut render_graph = resources.get_mut::<RenderGraph>().unwrap();
|
|
|
|
render_graph.add_pbr_graph(resources);
|
|
|
|
}
|
|
|
|
}
|