فهرست منبع

LottieLoader: Set texture.anisotropy to 16 by default.

Mr.doob 4 سال پیش
والد
کامیت
2c57a07031
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      examples/jsm/loaders/LottieLoader.js

+ 1 - 0
examples/jsm/loaders/LottieLoader.js

@@ -25,6 +25,7 @@ LottieLoader.prototype = Object.assign( Object.create( Loader.prototype ), {
 		const quality = this._quality || 1;
 
 		const texture = new CanvasTexture();
+		texture.anisotropy = 16;
 
 		const loader = new FileLoader( this.manager );
 		loader.setPath( this.path );