mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
10 lines
251 B
JavaScript
10 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 );
|