We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df8940 commit 3114e01Copy full SHA for 3114e01
src/helpers/BoxHelper.js
@@ -93,7 +93,7 @@ class BoxHelper extends LineSegments {
93
94
copy( source ) {
95
96
- LineSegments.prototype.copy.call( this, source );
+ super.copy( source );
97
98
this.object = source.object;
99
src/renderers/WebGL1Renderer.js
@@ -1,7 +1,16 @@
1
import { WebGLRenderer } from './WebGLRenderer.js';
2
3
-class WebGL1Renderer extends WebGLRenderer {}
+class WebGL1Renderer extends WebGLRenderer {
4
5
-WebGL1Renderer.prototype.isWebGL1Renderer = true;
+ constructor( parameters ) {
6
+
7
+ super( parameters );
8
9
+ this.isWebGL1Renderer = true;
10
11
+ }
12
13
14
+}
15
16
export { WebGL1Renderer };
0 commit comments