This commit is contained in:
2025-01-02 13:28:04 -06:00
commit 95b13a7f55
23 changed files with 602 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
shader_type spatial;
render_mode cull_disabled;
uniform sampler2D tileset : filter_nearest;
void vertex() {
// Called for every vertex the material is visible on.
}
void fragment() {
vec4 textureColor = texture(tileset, UV);
if(textureColor.a == 0.0)
discard;
ALBEDO = textureColor.rgb;
}