#import bevy_pbr::forward_io::VertexOutput struct LineMaterial { color: vec4, }; @group(2) @binding(0) var material: LineMaterial; @fragment fn fragment( mesh: VertexOutput, ) -> @location(0) vec4 { return material.color; }