Updated font, added interactions and testing frames.

This commit is contained in:
2025-03-05 18:52:56 -06:00
parent 150b67cc7a
commit 05bdd76508
10 changed files with 306 additions and 10 deletions

View File

@@ -15,5 +15,7 @@ out vec4 FragColor;
void main() {
vec4 tColor = tilesetGetColor(uint(TILESET_SLOT_ENTITIES), v_TextureCoord);
if(tColor.a == 0.0) discard;
if(tColor.r == 0.0) discard;
FragColor = vec4(1, 1, 1, 1) * tColor;
}