Преглед на файлове

default mipmap filter to linear instead of nearest

Nicolas Cannasse преди 4 години
родител
ревизия
98bbe012cc
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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;