improved file structure and started to add particles

This commit is contained in:
2023-12-27 11:07:55 -05:00
parent 6b26187cd8
commit f6f3ae98ac
6 changed files with 933 additions and 1957 deletions

File diff suppressed because it is too large Load Diff

View File

@ -133,23 +133,3 @@ impl VertexV3 {
]
}
}
pub const RECT_VERTICES_DATA: [VertexV1; 4] = [
VertexV1 {
pos: [-0.5, -0.5],
color: [1.0, 0.0, 0.0],
},
VertexV1 {
pos: [0.5, -0.5],
color: [0.0, 1.0, 0.0],
},
VertexV1 {
pos: [0.5, 0.5],
color: [0.0, 0.0, 1.0],
},
VertexV1 {
pos: [-0.5, 0.5],
color: [1.0, 1.0, 1.0],
},
];
pub const RECT_INDICES_DATA: [u32; 6] = [0, 1, 2, 2, 3, 0];