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