Explorar o código

Missing semicolons.

Mr.doob %!s(int64=14) %!d(string=hai) anos
pai
achega
cb4d4a4fe8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/renderers/CanvasRenderer.js

+ 1 - 1
src/renderers/CanvasRenderer.js

@@ -151,7 +151,7 @@ THREE.CanvasRenderer = function ( parameters ) {
 				setBlending( THREE.NormalBlending );
 				setOpacity( 1 );
 
-				_contextFillStyle = 'rgba(' + Math.floor( _clearColor.r * 255 ) + ',' + Math.floor( _clearColor.g * 255 ) + ',' + Math.floor( _clearColor.b * 255 ) + ',' + _clearOpacity + ')'
+				_contextFillStyle = 'rgba(' + Math.floor( _clearColor.r * 255 ) + ',' + Math.floor( _clearColor.g * 255 ) + ',' + Math.floor( _clearColor.b * 255 ) + ',' + _clearOpacity + ')';
 				_context.fillStyle = _contextFillStyle;
 				_context.fillRect( _clearRect.getX(), _clearRect.getY(), _clearRect.getWidth(), _clearRect.getHeight() );