File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import RenderLists from './RenderLists.js';
99import RenderContexts from './RenderContexts.js' ;
1010import Textures from './Textures.js' ;
1111import Background from './Background.js' ;
12- import Nodes from './nodes/Nodes .js' ;
12+ import NodeManager from './nodes/NodeManager .js' ;
1313import Color4 from './Color4.js' ;
1414import ClippingContext from './ClippingContext.js' ;
1515import QuadMesh from './QuadMesh.js' ;
@@ -319,7 +319,7 @@ class Renderer {
319319 * A reference to a renderer module for managing node related logic.
320320 *
321321 * @private
322- * @type {?Nodes }
322+ * @type {?NodeManager }
323323 * @default null
324324 */
325325 this . _nodes = null ;
@@ -773,7 +773,7 @@ class Renderer {
773773
774774 }
775775
776- this . _nodes = new Nodes ( this , backend ) ;
776+ this . _nodes = new NodeManager ( this , backend ) ;
777777 this . _animation = new Animation ( this , this . _nodes , this . info ) ;
778778 this . _attributes = new Attributes ( backend ) ;
779779 this . _background = new Background ( this , this . _nodes ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const _cacheKeyValues = [];
2222 * @private
2323 * @augments DataMap
2424 */
25- class Nodes extends DataMap {
25+ class NodeManager extends DataMap {
2626
2727 /**
2828 * Constructs a new nodes management component.
@@ -837,4 +837,4 @@ class Nodes extends DataMap {
837837
838838}
839839
840- export default Nodes ;
840+ export default NodeManager ;
You can’t perform that action at this time.
0 commit comments