Skip to content

Commit

Permalink
missed ;
Browse files Browse the repository at this point in the history
  • Loading branch information
aardgoose committed Dec 22, 2023
1 parent 0e45d4e commit d14554a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/jsm/renderers/webgl/WebGLBackend.js
Original file line number Diff line number Diff line change
Expand Up @@ -962,10 +962,10 @@ class WebGLBackend extends Backend {

if ( renderContext.textures !== null ) {

const renderTarget = renderContext.renderTarget
const renderTarget = renderContext.renderTarget;
const renderContextData = this.get( renderTarget );
const cubeFace = this.renderer._activeCubeFace;
const isCube = renderTarget.isWebGLCubeRenderTarget === true
const isCube = renderTarget.isWebGLCubeRenderTarget === true;

let fb;

Expand Down

0 comments on commit d14554a

Please sign in to comment.