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