physme 0.2.4

A simple 2d and 3d physics engine for bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
#version 450

layout(location = 0) out vec4 o_Target;

layout(set = 1, binding = 0) uniform DebugMaterial_color {
    vec4 Color;
};

void main() {
    o_Target = Color;
}