Procházet zdrojové kódy

default mipmap filter to linear instead of nearest

Nicolas Cannasse před 4 roky
rodič
revize
98bbe012cc
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      h3d/mat/Texture.hx

+ 1 - 1
h3d/mat/Texture.hx

@@ -102,7 +102,7 @@ class Texture {
 
 		this.width = w;
 		this.height = h;
-		this.mipMap = this.flags.has(MipMapped) ? Nearest : None;
+		this.mipMap = this.flags.has(MipMapped) ? Linear : None;
 		this.filter = Linear;
 		this.wrap = Clamp;
 		bits &= 0x7FFF;