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 18ae441 commit fbc28aeCopy full SHA for fbc28ae
src/textures/Source.js
@@ -1,15 +1,15 @@
1
import { ImageUtils } from '../extras/ImageUtils.js';
2
import * as MathUtils from '../math/MathUtils.js';
3
4
-let sourceId = 0;
+let _sourceId = 0;
5
6
class Source {
7
8
constructor( data = null ) {
9
10
this.isSource = true;
11
12
- Object.defineProperty( this, 'id', { value: sourceId ++ } );
+ Object.defineProperty( this, 'id', { value: _sourceId ++ } );
13
14
this.uuid = MathUtils.generateUUID();
15
0 commit comments