mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 12:13:25 +00:00
fix variable name
This commit is contained in:
parent
25b7dad1c2
commit
072346bb94
1 changed files with 5 additions and 5 deletions
|
@ -147,17 +147,17 @@ impl Application {
|
|||
let temp_buf_data = self.device
|
||||
.create_buffer_mapped(entities_count * size, wgpu::BufferUsage::COPY_SRC);
|
||||
|
||||
for ((entity, transform), slot) in entities.iter(&mut self.world)
|
||||
for ((material, transform), slot) in entities.iter(&mut self.world)
|
||||
.zip(temp_buf_data.data.chunks_exact_mut(size))
|
||||
{
|
||||
slot.copy_from_slice(
|
||||
MaterialUniforms {
|
||||
model: transform.0.into(),
|
||||
color: [
|
||||
entity.color.x as f32,
|
||||
entity.color.y as f32,
|
||||
entity.color.z as f32,
|
||||
entity.color.w as f32,
|
||||
material.color.x as f32,
|
||||
material.color.y as f32,
|
||||
material.color.z as f32,
|
||||
material.color.w as f32,
|
||||
],
|
||||
}
|
||||
.as_bytes(),
|
||||
|
|
Loading…
Reference in a new issue