فهرست منبع

ExternalTexture: Support .copy(), .clone() (#31731)

Don McCurdy 7 ماه پیش
والد
کامیت
1ef2e600e3
1فایلهای تغییر یافته به همراه10 افزوده شده و 0 حذف شده
  1. 10 0
      src/textures/ExternalTexture.js

+ 10 - 0
src/textures/ExternalTexture.js

@@ -41,6 +41,16 @@ class ExternalTexture extends Texture {
 
 	}
 
+	copy( source ) {
+
+		super.copy( source );
+
+		this.sourceTexture = source.sourceTexture;
+
+		return this;
+
+	}
+
 }
 
 export { ExternalTexture };

粤ICP备19079148号