MirrorRTT.js 249 字节
Newer Older
S
sunag 已提交
1 2 3 4 5 6 7 8 9
THREE.MirrorRTT = function ( width, height, options ) {

	THREE.Mirror.call( this, width, height, options );

	this.geometry.setDrawRange( 0, 0 ); // avoid rendering geometry

};

THREE.MirrorRTT.prototype = Object.create( THREE.Mirror.prototype );