#import bevy_sprite::mesh2d_view_bindings #import bevy_sprite::mesh2d_bindings // NOTE: Bindings must come before functions that use them! #import bevy_sprite::mesh2d_functions struct Vertex { #ifdef VERTEX_POSITIONS @location(0) position: vec3, #endif #ifdef VERTEX_NORMALS @location(1) normal: vec3, #endif #ifdef VERTEX_UVS @location(2) uv: vec2, #endif #ifdef VERTEX_TANGENTS @location(3) tangent: vec4, #endif #ifdef VERTEX_COLORS @location(4) color: vec4, #endif }; struct VertexOutput { @builtin(position) clip_position: vec4, #import bevy_sprite::mesh2d_vertex_output } @vertex fn vertex(vertex: Vertex) -> VertexOutput { var out: VertexOutput; #ifdef VERTEX_UVS out.uv = vertex.uv; #endif #ifdef VERTEX_POSITIONS out.world_position = mesh2d_position_local_to_world(mesh.model, vec4(vertex.position, 1.0)); out.clip_position = mesh2d_position_world_to_clip(out.world_position); #endif #ifdef VERTEX_NORMALS out.world_normal = mesh2d_normal_local_to_world(vertex.normal); #endif #ifdef VERTEX_TANGENTS out.world_tangent = mesh2d_tangent_local_to_world(mesh.model, vertex.tangent); #endif #ifdef VERTEX_COLORS out.color = vertex.color; #endif return out; } struct FragmentInput { #import bevy_sprite::mesh2d_vertex_output }; @fragment fn fragment(in: FragmentInput) -> @location(0) vec4 { #ifdef VERTEX_COLORS return in.color; #else return vec4(1.0, 0.0, 1.0, 1.0); #endif }