ReflectorRTT.js 251 B

123456789
  1. THREE.ReflectorRTT = function ( geometry, options ) {
  2. THREE.Reflector.call( this, geometry, options );
  3. this.geometry.setDrawRange( 0, 0 ); // avoid rendering geometry
  4. };
  5. THREE.ReflectorRTT.prototype = Object.create( THREE.Reflector.prototype );