소스 검색

Examples: Fix argument passed to copyTextureToTexture (#28419)

Nathan Bierema 1 년 전
부모
커밋
a49326c7f1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/webgpu_materials_texture_partialupdate.html

+ 1 - 1
examples/webgpu_materials_texture_partialupdate.html

@@ -110,7 +110,7 @@
 
 					// perform copy from src to dest texture to a random position
 
-					renderer.copyTextureToTexture( dataTexture, diffuseMap, new THREE.Vector2(), position );
+					renderer.copyTextureToTexture( dataTexture, diffuseMap, null, position );
 
 				}