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