bevy/examples/shader/shader_custom_material.rs

114 lines
3.5 KiB
Rust
Raw Normal View History

use bevy::prelude::*;
use bevy_render::{pipeline::{PipelineSpecialization, RenderPipeline, DynamicBinding}, base_render_graph};
2020-03-29 08:34:08 +00:00
fn main() {
App::build()
.add_default_plugins()
2020-05-13 23:17:44 +00:00
.add_asset::<MyMaterial>()
2020-05-14 00:31:56 +00:00
.add_startup_system(setup.system())
.run();
2020-03-29 08:34:08 +00:00
}
#[derive(RenderResources, Default)]
2020-03-29 08:34:08 +00:00
struct MyMaterial {
pub color: Color,
}
2020-06-05 07:13:18 +00:00
const VERTEX_SHADER: &str = r#"
#version 450
layout(location = 0) in vec3 Vertex_Position;
layout(set = 0, binding = 0) uniform Camera {
mat4 ViewProj;
};
layout(set = 1, binding = 0) uniform Transform {
2020-06-05 07:13:18 +00:00
mat4 Model;
};
void main() {
gl_Position = ViewProj * Model * vec4(Vertex_Position, 1.0);
}
"#;
const FRAGMENT_SHADER: &str = r#"
#version 450
layout(location = 0) out vec4 o_Target;
layout(set = 1, binding = 1) uniform MyMaterial_color {
vec4 color;
};
void main() {
o_Target = color;
}
"#;
2020-05-14 00:31:56 +00:00
fn setup(
command_buffer: &mut CommandBuffer,
2020-05-14 00:52:47 +00:00
mut pipelines: ResMut<Assets<PipelineDescriptor>>,
mut shaders: ResMut<Assets<Shader>>,
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<MyMaterial>>,
mut render_graph: ResMut<RenderGraph>,
2020-05-14 00:31:56 +00:00
) {
2020-06-18 00:27:49 +00:00
// Create a new shader pipeline
let pipeline_handle = pipelines.add(PipelineDescriptor::default_config(ShaderStages {
vertex: shaders.add(Shader::from_glsl(ShaderStage::Vertex, VERTEX_SHADER)),
fragment: Some(shaders.add(Shader::from_glsl(ShaderStage::Fragment, FRAGMENT_SHADER))),
}));
2020-05-14 00:31:56 +00:00
2020-06-18 00:27:49 +00:00
// Add an AssetRenderResourcesNode to our Render Graph. This will bind MyMaterial resources to our shader
render_graph.add_system_node(
"my_material",
AssetRenderResourcesNode::<MyMaterial>::new(true),
);
2020-03-29 08:34:08 +00:00
2020-06-18 00:27:49 +00:00
// Add a Render Graph edge connecting our new "my_material" node to the main pass node
render_graph
.add_node_edge("my_material", base_render_graph::node::MAIN_PASS)
.unwrap();
// Create a new material
2020-05-13 23:42:27 +00:00
let material = materials.add(MyMaterial {
2020-03-29 08:34:08 +00:00
color: Color::rgb(0.0, 0.8, 0.0),
});
2020-06-18 00:27:49 +00:00
// Create a cube mesh which will use our material
2020-05-16 07:21:04 +00:00
let cube_handle = meshes.add(Mesh::from(shape::Cube { size: 1.0 }));
2020-03-29 08:34:08 +00:00
2020-06-18 00:27:49 +00:00
// Setup our world
2020-05-14 00:31:56 +00:00
command_buffer
2020-03-29 08:34:08 +00:00
.build()
// cube
.add_entity(MeshMaterialEntity::<MyMaterial> {
mesh: cube_handle,
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::specialized(
pipeline_handle,
// NOTE: in the future you wont need to manually declare dynamic bindings
PipelineSpecialization {
dynamic_bindings: vec![
// Transform
DynamicBinding {
bind_group: 1,
binding: 0,
},
// MyMaterial_color
DynamicBinding {
bind_group: 1,
binding: 1,
},
],
..Default::default()
},
)]),
material,
translation: Translation::new(0.0, 0.0, 0.0),
2020-03-29 08:34:08 +00:00
..Default::default()
})
// camera
.add_entity(PerspectiveCameraEntity {
transform: Transform::new_sync_disabled(Mat4::face_toward(
2020-03-29 08:34:08 +00:00
Vec3::new(3.0, 8.0, 5.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 0.0, 1.0),
)),
..Default::default()
2020-04-07 20:25:01 +00:00
});
2020-03-29 08:34:08 +00:00
}