rayzee 7.10.0 → 7.10.2

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/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Rayzee Engine
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/rayzee?label=npm)](https://www.npmjs.com/package/rayzee)
4
- [![minzipped size](https://img.shields.io/badge/minzipped-164.9%20KB-blue)](https://www.npmjs.com/package/rayzee)
4
+ [![minzipped size](https://img.shields.io/badge/minzipped-163.4%20KB-blue)](https://www.npmjs.com/package/rayzee)
5
5
  [![downloads](https://img.shields.io/npm/dw/rayzee?label=downloads)](https://www.npmjs.com/package/rayzee)
6
6
  [![jsDelivr](https://img.shields.io/jsdelivr/npm/hm/rayzee?label=jsDelivr)](https://www.jsdelivr.com/package/npm/rayzee)
7
7
 
@@ -431,14 +431,13 @@ Denoiser strategy, ASVGF, OIDN, upscaler, and auto-exposure.
431
431
 
432
432
  ```js
433
433
  // Strategy
434
- engine.denoisingManager.setStrategy('asvgf', 'medium') // 'none' | 'asvgf' | 'ssrc' | 'edgeaware'
434
+ engine.denoisingManager.setStrategy('asvgf', 'medium') // 'none' | 'asvgf' | 'edgeaware'
435
435
  engine.denoisingManager.setASVGFEnabled(true, 'medium')
436
436
  engine.denoisingManager.applyASVGFPreset('high') // 'low' | 'medium' | 'high'
437
437
  engine.denoisingManager.setAutoExposure(true)
438
438
 
439
439
  // Fine-grained parameters
440
440
  engine.denoisingManager.setASVGFParams({ temporalAlpha: 0.1, phiColor: 10 })
441
- engine.denoisingManager.setSSRCParams({ temporalAlpha: 0.1, spatialRadius: 3 })
442
441
  engine.denoisingManager.setEdgeAwareParams({ pixelEdgeSharpness: 1.0 })
443
442
  engine.denoisingManager.setAutoExposureParams({ keyValue: 0.18 })
444
443