Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Emerson Coskey committed Dec 24, 2024
1 parent 43923dd commit dc39a89
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_pbr/src/atmosphere/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ use bevy_asset::load_internal_asset;
use bevy_core_pipeline::core_3d::graph::Node3d;
use bevy_ecs::{
component::Component,
query::{Added, Changed, QueryItem, With},
query::{Changed, QueryItem, With},
schedule::IntoSystemConfigs,
system::{lifetimeless::Read, Query},
};
use bevy_math::{UVec2, UVec3, Vec3};
use bevy_reflect::Reflect;
use bevy_render::{
extract_component::{DynamicUniformIndex, UniformComponentPlugin},
extract_component::UniformComponentPlugin,
render_resource::{ShaderType, SpecializedRenderPipelines},
};
use bevy_render::{
Expand Down
1 change: 0 additions & 1 deletion crates/bevy_pbr/src/atmosphere/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ impl ViewNode for RenderSkyNode {
world: &'w World,
) -> Result<(), NodeRunError> {
let pipeline_cache = world.resource::<PipelineCache>();
let atmosphere_pipelines = world.resource::<AtmosphereLutPipelines>();
let Some(render_sky_pipeline) =
pipeline_cache.get_render_pipeline(render_sky_pipeline_id.0)
else {
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/atmosphere/resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use bevy_ecs::{
system::{Commands, Query, Res, ResMut, Resource},
world::{FromWorld, World},
};
use bevy_math::{Mat4, Vec3, Vec3Swizzles};
use bevy_math::{Mat4, Vec3};
use bevy_render::{
camera::Camera,
extract_component::ComponentUniforms,
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub mod graph {
}
}

use crate::{atmosphere::AtmospherePlugin, deferred::DeferredPbrLightingPlugin, graph::NodePbr};
use crate::{deferred::DeferredPbrLightingPlugin, graph::NodePbr};
use bevy_app::prelude::*;
use bevy_asset::{load_internal_asset, AssetApp, Assets, Handle};
use bevy_core_pipeline::core_3d::graph::{Core3d, Node3d};
Expand Down
4 changes: 1 addition & 3 deletions crates/bevy_pbr/src/render/mesh_view_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ use crate::{
self, IrradianceVolume, RenderViewIrradianceVolumeBindGroupEntries,
IRRADIANCE_VOLUMES_ARE_USABLE,
},
prepass,
resources::{AtmosphereSamplers, AtmosphereTextures},
Atmosphere, EnvironmentMapUniformBuffer, FogMeta, GlobalClusterableObjectMeta,
prepass, EnvironmentMapUniformBuffer, FogMeta, GlobalClusterableObjectMeta,
GpuClusterableObjects, GpuFog, GpuLights, LightMeta, LightProbesBuffer, LightProbesUniform,
MeshPipeline, MeshPipelineKey, RenderViewLightProbes, ScreenSpaceAmbientOcclusionResources,
ScreenSpaceReflectionsBuffer, ScreenSpaceReflectionsUniform, ShadowSamplers,
Expand Down

0 comments on commit dc39a89

Please sign in to comment.