revert to vanilla assets

This commit is contained in:
2026-07-09 21:14:29 -04:00
parent 826e8967a2
commit 223b733bdc
2126 changed files with 38030 additions and 3856 deletions

View File

@@ -0,0 +1,5 @@
#version 330
vec4 sample_lightmap(sampler2D lightMap, ivec2 uv) {
return texture(lightMap, clamp((uv / 256.0) + 0.5 / 16.0, vec2(0.5 / 16.0), vec2(15.5 / 16.0)));
}