mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
import { Reflector } from '../objects/Reflector.js';
|
|
|
|
var ReflectorRTT = function ( geometry, options ) {
|
|
|
|
Reflector.call( this, geometry, options );
|
|
|
|
this.geometry.setDrawRange( 0, 0 ); // avoid rendering geometry
|
|
|
|
};
|
|
|
|
ReflectorRTT.prototype = Object.create( Reflector.prototype );
|
|
|
|
export { ReflectorRTT };
|