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