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);