Skip to content

Commit

Permalink
Sort imports in terrain.wgsl
Browse files Browse the repository at this point in the history
  • Loading branch information
Indy2222 committed Feb 21, 2024
1 parent 9ddc79d commit 56f542c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions assets/shaders/terrain.wgsl
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#import bevy_pbr::{
pbr_fragment::pbr_input_from_standard_material,
pbr_functions::alpha_discard,
}
#import bevy_pbr::{
forward_io::{VertexOutput, FragmentOutput},
pbr_functions::{apply_pbr_lighting, main_pass_post_lighting_processing},
pbr_fragment::pbr_input_from_standard_material,
pbr_functions::{
alpha_discard,
apply_pbr_lighting,
main_pass_post_lighting_processing,
},
}

const SHAPE_COLOR = vec4<f32>(1., 1., 1., 0.75);
Expand Down

0 comments on commit 56f542c

Please sign in to comment.