Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
macrozone committed Jan 14, 2017
1 parent 5b9f267 commit fba53e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/THREERenderer.js
Expand Up @@ -51,7 +51,7 @@ const THREERenderer = React.createClass({
this._THREErenderer = new THREE.WebGLRenderer({
alpha: this.props.transparent,
canvas: renderelement,
antialias: props.antialias === undefined ? true : props.antialias
antialias: props.antialias === undefined ? true : props.antialias,
...this.props.rendererProps
});
this._THREErenderer.shadowMap.enabled = props.shadowMapEnabled !== undefined ? props.shadowMapEnabled : false;
Expand Down

0 comments on commit fba53e6

Please sign in to comment.