Move files and folders to new repo format to enable multi-project format

This commit is contained in:
2025-03-06 22:07:25 -08:00
parent 12cbb82ac9
commit a09f6ec5a5
3973 changed files with 1781 additions and 2938 deletions

View File

@@ -0,0 +1,14 @@
shader_type spatial;
render_mode unshaded, cull_disabled, depth_test_disabled;
uniform vec2 grid_size;
uniform vec3 color = vec3(0.);
void fragment() {
vec2 uv = fract(UV * grid_size);
vec2 eps = 0.0015 * grid_size;
vec2 inv_eps = 1.0 - eps;
if(uv.x > eps.x && uv.x < inv_eps.x && uv.y > eps.y && uv.y < inv_eps.y) {
discard;
}
ALBEDO = color;
}