whatever this is

This commit is contained in:
2020-10-21 01:08:53 +02:00
parent 71dc720a31
commit c2f0dd53c1
5 changed files with 109 additions and 34 deletions

View File

@@ -42,8 +42,10 @@ pub struct Vertex {
pub position: [f32; 3],
pub uv: [f32; 2],
pub normal: [f32; 3],
pub bone_index: [i32; 4],
pub bone_weight: [f32; 4],
}
vulkano::impl_vertex!(Vertex, position, uv, normal);
vulkano::impl_vertex!(Vertex, position, uv, normal, bone_index, bone_weight);
#[derive(Default, Debug, Clone)]
pub struct LinePoint {