Skip to content

Commit

Permalink
Clean up non-breaking spaces (#29104)
Browse files Browse the repository at this point in the history
  • Loading branch information
WestLangley committed Aug 10, 2024
1 parent 2d6bf90 commit 5cdfd25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nodes/display/BloomNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class BloomNode extends TempNode {
diffuseSum.addAssign( add( sample1, sample2 ).mul( w ) );
weightSum.addAssign( float( 2.0 ).mul( w ) );

} );
} );

return vec4( diffuseSum.div( weightSum ), 1.0 );

Expand Down
2 changes: 1 addition & 1 deletion src/nodes/display/MotionBlurNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const motionBlur = /*#__PURE__*/ Fn( ( [ inputNode, velocity, numSamples
const offset = velocity.mul( float( i ).div( fSamples.sub( 1 ) ).sub( 0.5 ) );
colorResult.addAssign( sampleColor( uvs.add( offset ) ) );

} );
} );

colorResult.divAssign( fSamples );

Expand Down

0 comments on commit 5cdfd25

Please sign in to comment.