Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Jan 29, 2021
1 parent af95286 commit 6d7ae6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_gltf/src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ fn load_material(material: &Material, load_context: &mut LoadContext) -> Handle<
LoadedAsset::new(StandardMaterial {
albedo: Color::rgba(color[0], color[1], color[2], color[3]),
albedo_texture: texture_handle,
shaded: !material.unlit()
})
shaded: !material.unlit(),
})
.with_dependencies(dependencies),
)
}
Expand Down

0 comments on commit 6d7ae6d

Please sign in to comment.