|
@@ -9,7 +9,7 @@ import RenderLists from './RenderLists.js';
|
|
|
import RenderContexts from './RenderContexts.js';
|
|
import RenderContexts from './RenderContexts.js';
|
|
|
import Textures from './Textures.js';
|
|
import Textures from './Textures.js';
|
|
|
import Background from './Background.js';
|
|
import Background from './Background.js';
|
|
|
-import Nodes from './nodes/Nodes.js';
|
|
|
|
|
|
|
+import NodeManager from './nodes/NodeManager.js';
|
|
|
import Color4 from './Color4.js';
|
|
import Color4 from './Color4.js';
|
|
|
import ClippingContext from './ClippingContext.js';
|
|
import ClippingContext from './ClippingContext.js';
|
|
|
import QuadMesh from './QuadMesh.js';
|
|
import QuadMesh from './QuadMesh.js';
|
|
@@ -319,7 +319,7 @@ class Renderer {
|
|
|
* A reference to a renderer module for managing node related logic.
|
|
* A reference to a renderer module for managing node related logic.
|
|
|
*
|
|
*
|
|
|
* @private
|
|
* @private
|
|
|
- * @type {?Nodes}
|
|
|
|
|
|
|
+ * @type {?NodeManager}
|
|
|
* @default null
|
|
* @default null
|
|
|
*/
|
|
*/
|
|
|
this._nodes = null;
|
|
this._nodes = null;
|
|
@@ -773,7 +773,7 @@ class Renderer {
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- this._nodes = new Nodes( this, backend );
|
|
|
|
|
|
|
+ this._nodes = new NodeManager( this, backend );
|
|
|
this._animation = new Animation( this, this._nodes, this.info );
|
|
this._animation = new Animation( this, this._nodes, this.info );
|
|
|
this._attributes = new Attributes( backend );
|
|
this._attributes = new Attributes( backend );
|
|
|
this._background = new Background( this, this._nodes );
|
|
this._background = new Background( this, this._nodes );
|