#import bevy_pbr::mesh_view_bind_group #import bevy_pbr::mesh_struct [[group(1), binding(0)]] var mesh: Mesh; struct Vertex { [[location(0)]] position: vec3; [[location(1)]] normal: vec3; [[location(2)]] uv: vec2; }; struct VertexOutput { [[builtin(position)]] clip_position: vec4; }; [[stage(vertex)]] fn vertex(vertex: Vertex) -> VertexOutput { let world_position = mesh.model * vec4(vertex.position, 1.0); var out: VertexOutput; out.clip_position = view.view_proj * world_position; return out; } [[stage(fragment)]] fn fragment() -> [[location(0)]] vec4 { var color = vec4(0.0, 0.0, 1.0, 1.0); # ifdef IS_RED color = vec4(1.0, 0.0, 0.0, 1.0); # endif return color; }