This repository was archived by the owner on Nov 22, 2022. It is now read-only.
This repository was archived by the owner on Nov 22, 2022. It is now read-only.
Canvas transparency #74
Open
Description
Hello again! Im trying to save canvas as image like this
var data = renderer.domElement.toDataURL("image/png");
var img = new Image();
img.src = data;
$("body").append(img);
this way works only with three WebGLRenderer. In ray traycing renderer i get black background. Whats im doing wrong?