From 3878dc946d0f65d93b93b9a10457e68c47ef19d1 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sat, 17 Dec 2022 20:42:17 +0530 Subject: [PATCH] attempt fix filtering??? --- src/ResourceLoader.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ResourceLoader.hx b/src/ResourceLoader.hx index 38bac305..19f420b2 100644 --- a/src/ResourceLoader.hx +++ b/src/ResourceLoader.hx @@ -263,7 +263,8 @@ class ResourceLoader { texObj.flags.set(MipMapped); } var tex = img.toTexture(); - tex.mipMap = Nearest; + tex.mipMap = Linear; + tex.filter = Linear; // tex.filter = Nearest; var textureresource = new Resource(tex, path, textureCache, tex -> tex.dispose()); textureCache.set(path, textureresource);