bevy/examples/shader/shader_custom_material.rs

102 lines
3 KiB
Rust
Raw Normal View History

2020-07-17 00:20:42 +00:00
use bevy::{
prelude::*,
render::{
mesh::shape,
pipeline::{PipelineDescriptor, RenderPipeline},
render_graph::{base, AssetRenderResourcesNode, RenderGraph},
renderer::RenderResources,
shader::{ShaderStage, ShaderStages},
2020-07-17 00:20:42 +00:00
},
type_registry::TypeUuid,
2020-07-10 08:37:06 +00:00
};
2020-03-29 08:34:08 +00:00
/// This example illustrates how to create a custom material asset and a shader that uses that material
2020-03-29 08:34:08 +00:00
fn main() {
App::build()
.add_plugins(DefaultPlugins)
2020-05-13 23:17:44 +00:00
.add_asset::<MyMaterial>()
.add_startup_system(setup)
.run();
2020-03-29 08:34:08 +00:00
}
#[derive(RenderResources, Default, TypeUuid)]
#[uuid = "1e08866c-0b8a-437e-8bce-37733b25127e"]
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(
commands: &mut Commands,
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-08-16 03:27:41 +00:00
// Add a Render Graph edge connecting our new "my_material" node to the main pass node. This ensures "my_material" runs before the main pass
2020-06-18 00:27:49 +00:00
render_graph
.add_node_edge("my_material", base::node::MAIN_PASS)
2020-06-18 00:27:49 +00:00
.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
// Setup our world
2020-07-10 04:18:35 +00:00
commands
2020-03-29 08:34:08 +00:00
// cube
.spawn(MeshBundle {
mesh: meshes.add(Mesh::from(shape::Cube { size: 2.0 })),
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::new(
pipeline_handle,
)]),
transform: Transform::from_translation(Vec3::new(0.0, 0.0, 0.0)),
2020-03-29 08:34:08 +00:00
..Default::default()
})
2020-07-10 04:18:35 +00:00
.with(material)
2020-03-29 08:34:08 +00:00
// camera
.spawn(Camera3dBundle {
transform: Transform::from_translation(Vec3::new(3.0, 5.0, -8.0))
.looking_at(Vec3::default(), Vec3::unit_y()),
2020-03-29 08:34:08 +00:00
..Default::default()
2020-04-07 20:25:01 +00:00
});
2020-03-29 08:34:08 +00:00
}