rayzee 5.3.3 → 5.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rayzee",
3
- "version": "5.3.3",
3
+ "version": "5.3.4",
4
4
  "type": "module",
5
5
  "description": "Real-time WebGPU path tracing engine built on Three.js",
6
6
  "main": "dist/rayzee.umd.js",
@@ -679,8 +679,6 @@ export class PathTracerApp extends EventDispatcher {
679
679
 
680
680
  setCanvasSize( width, height ) {
681
681
 
682
- this.canvas.style.width = `${width}px`;
683
- this.canvas.style.height = `${height}px`;
684
682
  this.denoisingManager?.syncCanvasStyle( width, height );
685
683
 
686
684
  if ( width === 0 || height === 0 ) return;