Computer >> Máy Tính >  >> Lập trình >> HTML

Thay đổi nền ba.js thành trong suốt hoặc màu khác trong HTML


Nếu bạn muốn có nền trong suốt trong Three.js, bạn cần chuyển tham số alpha tới các hàm tạo WebGLRenderer trong mã cho sẵn bên dưới -

var renderer = new THREE.WebGLRenderer( {alpha: true } );
// You can leave the clear color at the defaultvalue.
renderer.setClearColor( 0x000000, 0 ); //default

Tuy nhiên, để đặt màu nền,

renderer.setClearColor(0xb0f442 );