forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mesh_custom_attribute.rs
144 lines (132 loc) · 4.6 KB
/
mesh_custom_attribute.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
use bevy::{
prelude::*,
reflect::TypeUuid,
render::{
mesh::{shape, VertexAttributeValues},
pipeline::{PipelineDescriptor, RenderPipeline},
render_graph::{base, AssetRenderResourcesNode, RenderGraph},
renderer::RenderResources,
shader::{ShaderStage, ShaderStages},
},
};
/// This example illustrates how to add a custom attribute to a mesh and use it in a custom shader.
fn main() {
App::build()
.add_plugins(DefaultPlugins)
.add_asset::<MyMaterialWithVertexColorSupport>()
.add_startup_system(setup.system())
.run();
}
#[derive(RenderResources, Default, TypeUuid)]
#[uuid = "0320b9b8-b3a3-4baa-8bfa-c94008177b17"]
struct MyMaterialWithVertexColorSupport;
const VERTEX_SHADER: &str = r#"
#version 450
layout(location = 0) in vec3 Vertex_Position;
layout(location = 1) in vec3 Vertex_Color;
layout(location = 0) out vec3 v_color;
layout(set = 0, binding = 0) uniform Camera {
mat4 ViewProj;
};
layout(set = 1, binding = 0) uniform Transform {
mat4 Model;
};
void main() {
gl_Position = ViewProj * Model * vec4(Vertex_Position, 1.0);
v_color = Vertex_Color;
}
"#;
const FRAGMENT_SHADER: &str = r#"
#version 450
layout(location = 0) out vec4 o_Target;
layout(location = 0) in vec3 v_color;
void main() {
o_Target = vec4(v_color, 1.0);
}
"#;
fn setup(
mut commands: Commands,
mut pipelines: ResMut<Assets<PipelineDescriptor>>,
mut shaders: ResMut<Assets<Shader>>,
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<MyMaterialWithVertexColorSupport>>,
mut render_graph: ResMut<RenderGraph>,
) {
// 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))),
}));
// Add an AssetRenderResourcesNode to our Render Graph. This will bind MyMaterialWithVertexColorSupport resources to our shader
render_graph.add_system_node(
"my_material_with_vertex_color_support",
AssetRenderResourcesNode::<MyMaterialWithVertexColorSupport>::new(true),
);
// 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
render_graph
.add_node_edge(
"my_material_with_vertex_color_support",
base::node::MAIN_PASS,
)
.unwrap();
// Create a new material
let material = materials.add(MyMaterialWithVertexColorSupport {});
// create a generic cube
let mut cube_with_vertex_colors = Mesh::from(shape::Cube { size: 2.0 });
// insert our custom color attribute with some nice colors!
cube_with_vertex_colors.set_attribute(
// name of the attribute
"Vertex_Color",
// the vertex attributes, represented by `VertexAttributeValues`
// NOTE: the attribute count has to be consistent across all attributes, otherwise bevy will panic.
VertexAttributeValues::from(vec![
// top
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
// bottom
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
// right
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
// left
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
// front
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
// back
[0.79, 0.73, 0.07],
[0.74, 0.14, 0.29],
[0.08, 0.55, 0.74],
[0.20, 0.27, 0.29],
]),
);
// Setup our world
commands
// cube
.spawn(MeshBundle {
mesh: meshes.add(cube_with_vertex_colors), // use our cube with vertex colors
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::new(
pipeline_handle,
)]),
transform: Transform::from_xyz(0.0, 0.0, 0.0),
..Default::default()
})
.with(material)
// camera
.spawn(PerspectiveCameraBundle {
transform: Transform::from_xyz(3.0, 5.0, -8.0).looking_at(Vec3::default(), Vec3::Y),
..Default::default()
});
}