mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
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 );
|