This commit is contained in:
2025-04-29 05:55:53 -05:00
parent 7dd814453e
commit b98fdd0f29
137 changed files with 0 additions and 2021 deletions

View File

@@ -1,16 +0,0 @@
shader_type spatial;
render_mode cull_disabled;
uniform sampler2D tileset : filter_nearest;
void vertex() {
}
void fragment() {
vec4 textureColor = texture(tileset, UV) * COLOR;
if(textureColor.a == 0.0)
discard;
ALBEDO = textureColor.rgb;
}