Spaces:
Running
Running
File size: 251 Bytes
263e0f2 |
1 2 3 4 5 6 7 8 9 10 |
THREE.ReflectorRTT = function ( geometry, options ) {
THREE.Reflector.call( this, geometry, options );
this.geometry.setDrawRange( 0, 0 ); // avoid rendering geometry
};
THREE.ReflectorRTT.prototype = Object.create( THREE.Reflector.prototype );
|