cargo fmt
This commit is contained in:
parent
fa4babfda9
commit
c195e91bef
6
build.rs
6
build.rs
|
@ -29,7 +29,11 @@ fn main() -> std::io::Result<()> {
|
||||||
write!(&file, "[\n")?;
|
write!(&file, "[\n")?;
|
||||||
extract_scene(&mut file, "test", "src/blender/scene_test.blend")?;
|
extract_scene(&mut file, "test", "src/blender/scene_test.blend")?;
|
||||||
extract_scene(&mut file, "workshop", "src/blender/scene_workshop.blend")?;
|
extract_scene(&mut file, "workshop", "src/blender/scene_workshop.blend")?;
|
||||||
extract_scene(&mut file, "greenhouse", "src/blender/scene_greenhouse.blend")?;
|
extract_scene(
|
||||||
|
&mut file,
|
||||||
|
"greenhouse",
|
||||||
|
"src/blender/scene_greenhouse.blend",
|
||||||
|
)?;
|
||||||
write!(&file, "]\n")?;
|
write!(&file, "]\n")?;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -141,8 +141,8 @@ pub fn setup_camera(mut commands: Commands, settings: Res<var::Settings>) {
|
||||||
//bevy::core_pipeline::smaa::SmaaSettings::default(),
|
//bevy::core_pipeline::smaa::SmaaSettings::default(),
|
||||||
// bevy::core_pipeline::experimental::taa::TemporalAntiAliasBundle::default(),
|
// bevy::core_pipeline::experimental::taa::TemporalAntiAliasBundle::default(),
|
||||||
// bevy::core_pipeline::contrast_adaptive_sharpening::ContrastAdaptiveSharpeningSettings {
|
// bevy::core_pipeline::contrast_adaptive_sharpening::ContrastAdaptiveSharpeningSettings {
|
||||||
// enabled: true,
|
// enabled: true,
|
||||||
// ..default()
|
// ..default()
|
||||||
// },
|
// },
|
||||||
BloomSettings {
|
BloomSettings {
|
||||||
composite_mode: BloomCompositeMode::EnergyConserving,
|
composite_mode: BloomCompositeMode::EnergyConserving,
|
||||||
|
|
|
@ -50,7 +50,12 @@ pub const PLAYER_AR_AVATARS: &[(Avatar, &str, f32, &str)] = &[
|
||||||
(Avatar::Hoodie, "suit_ar_hoodie", 1.0, "Hoodie"),
|
(Avatar::Hoodie, "suit_ar_hoodie", 1.0, "Hoodie"),
|
||||||
(Avatar::HoodieUp, "suit_ar_hoodie_up", 1.0, "Hoodie Up"),
|
(Avatar::HoodieUp, "suit_ar_hoodie_up", 1.0, "Hoodie Up"),
|
||||||
(Avatar::Skirt, "suit_ar_skirt", 1.0, "Skirt"),
|
(Avatar::Skirt, "suit_ar_skirt", 1.0, "Skirt"),
|
||||||
(Avatar::SkirtTartan, "suit_ar_skirt_tartan", 1.0, "Tartan Skirt"),
|
(
|
||||||
|
Avatar::SkirtTartan,
|
||||||
|
"suit_ar_skirt_tartan",
|
||||||
|
1.0,
|
||||||
|
"Tartan Skirt",
|
||||||
|
),
|
||||||
(Avatar::Dress, "suit_ar_dress", 1.0, "Dress"),
|
(Avatar::Dress, "suit_ar_dress", 1.0, "Dress"),
|
||||||
(Avatar::Nekomimi, "suit_ar_nekomimi", 1.0, "Cat Ears"),
|
(Avatar::Nekomimi, "suit_ar_nekomimi", 1.0, "Cat Ears"),
|
||||||
(Avatar::Wings, "suit_ar_wings", 1.0, "Wings"),
|
(Avatar::Wings, "suit_ar_wings", 1.0, "Wings"),
|
||||||
|
|
Loading…
Reference in a new issue