mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
remove unused indices
This commit is contained in:
parent
0eb6c6fa74
commit
599d30d861
1 changed files with 0 additions and 12 deletions
|
@ -26,18 +26,6 @@ fn setup(world: &mut World) {
|
|||
(mesh_storage.add(cube), mesh_storage.add(plane))
|
||||
};
|
||||
|
||||
let mut indices = std::collections::HashMap::new();
|
||||
indices.insert("StandardMaterial".to_string(), 0);
|
||||
indices.insert("Object".to_string(), 0);
|
||||
|
||||
let mut indices_2 = std::collections::HashMap::new();
|
||||
indices_2.insert("StandardMaterial".to_string(), 256);
|
||||
indices_2.insert("Object".to_string(), 256);
|
||||
|
||||
let mut indices_3 = std::collections::HashMap::new();
|
||||
indices_3.insert("StandardMaterial".to_string(), 512);
|
||||
indices_3.insert("Object".to_string(), 512);
|
||||
|
||||
world.build()
|
||||
// plane
|
||||
.add_archetype(NewMeshEntity {
|
||||
|
|
Loading…
Reference in a new issue