Skip to content

Commit

Permalink
Merge pull request #11497 from aardgoose/renderlists
Browse files Browse the repository at this point in the history
add getRenderLists() method to WebGLRenderer
  • Loading branch information
mrdoob authored Jun 14, 2017
2 parents db601c2 + c6f6e98 commit 5986c2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/api/renderers/WebGLRenderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,11 @@ <h3>[property:Object properties]</h3>
Used internally by the renderer to keep track of various sub object properties.
</div>

<h3>[property:WebGLRenderLists renderLists]</h3>
<div>
Used internally to handle ordering of scene object rendering.
</div>

<h3>[property:WebGLShadowMap shadowMap]</h3>
<div>
This contains the reference to the shadow map, if used.
Expand Down
1 change: 1 addition & 0 deletions src/renderers/WebGLRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ function WebGLRenderer( parameters ) {
this.capabilities = capabilities;
this.extensions = extensions;
this.properties = properties;
this.renderLists = renderLists;
this.state = state;

// shadow map
Expand Down

0 comments on commit 5986c2d

Please sign in to comment.