2021-12-10 21:09:36 +00:00
|
|
|
#import bevy_pbr::mesh_view_bind_group
|
|
|
|
#import bevy_pbr::mesh_struct
|
|
|
|
|
|
|
|
struct Vertex {
|
|
|
|
[[location(0)]] position: vec3<f32>;
|
2022-03-29 18:31:13 +00:00
|
|
|
#ifdef SKINNED
|
|
|
|
[[location(4)]] joint_indexes: vec4<u32>;
|
|
|
|
[[location(5)]] joint_weights: vec4<f32>;
|
|
|
|
#endif
|
2021-12-10 21:09:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[[group(1), binding(0)]]
|
|
|
|
var<uniform> mesh: Mesh;
|
|
|
|
|
|
|
|
struct VertexOutput {
|
|
|
|
[[builtin(position)]] clip_position: vec4<f32>;
|
|
|
|
};
|
|
|
|
|
2022-03-29 18:31:13 +00:00
|
|
|
#ifdef SKINNED
|
|
|
|
[[group(2), binding(0)]]
|
|
|
|
var<uniform> joint_matrices: SkinnedMesh;
|
|
|
|
#import bevy_pbr::skinning
|
|
|
|
#endif
|
|
|
|
|
2021-12-10 21:09:36 +00:00
|
|
|
[[stage(vertex)]]
|
|
|
|
fn vertex(vertex: Vertex) -> VertexOutput {
|
2022-03-29 18:31:13 +00:00
|
|
|
#ifdef SKINNED
|
|
|
|
let model = skin_model(vertex.joint_indexes, vertex.joint_weights);
|
|
|
|
#else
|
|
|
|
let model = mesh.model;
|
|
|
|
#endif
|
2021-12-10 21:09:36 +00:00
|
|
|
|
2022-03-29 18:31:13 +00:00
|
|
|
let world_position = model * vec4<f32>(vertex.position, 1.0);
|
2021-12-10 21:09:36 +00:00
|
|
|
var out: VertexOutput;
|
|
|
|
out.clip_position = view.view_proj * world_position;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(fragment)]]
|
|
|
|
fn fragment() -> [[location(0)]] vec4<f32> {
|
|
|
|
return vec4<f32>(1.0, 1.0, 1.0, 1.0);
|
|
|
|
}
|