Skip to content

Commit bfdbcf7

Browse files
authored
WebGPURenderer: Rename Nodes to NodeManager (#32786)
1 parent 9e06a1b commit bfdbcf7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/renderers/common/Renderer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import RenderLists from './RenderLists.js';
99
import RenderContexts from './RenderContexts.js';
1010
import Textures from './Textures.js';
1111
import Background from './Background.js';
12-
import Nodes from './nodes/Nodes.js';
12+
import NodeManager from './nodes/NodeManager.js';
1313
import Color4 from './Color4.js';
1414
import ClippingContext from './ClippingContext.js';
1515
import 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 );
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)