Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson authored Feb 22, 2022
1 parent f9b9303 commit f3854d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function renderLoop() {
// before calling tilesRenderer.update
camera.updateMatrixWorld();
tilesRenderer.update();
renderer.render( camera, scene );
renderer.render( scene, camera );

}
```
Expand Down Expand Up @@ -197,7 +197,7 @@ function renderLoop() {
needsRerender = false;
camera.updateMatrixWorld();
tilesRenderer.update();
renderer.render( camera, scene );
renderer.render( scene, camera );

}

Expand Down

0 comments on commit f3854d1

Please sign in to comment.