rayzee 7.3.0 → 7.4.1

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-158.6%20KB-blue)](https://www.npmjs.com/package/rayzee)
4
+ [![minzipped size](https://img.shields.io/badge/minzipped-159%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
 
@@ -302,7 +302,7 @@ await engine.loadEnvironment(url) // Load HDR/EXR environment map
302
302
  engine.settings.set('bounces', 8) // Set a single parameter
303
303
  engine.settings.setMany({ // Set multiple parameters at once
304
304
  bounces: 8,
305
- samplesPerPixel: 1,
305
+ maxSamples: 60,
306
306
  exposure: 1.0
307
307
  })
308
308
  engine.settings.get('bounces') // Read a parameter
@@ -314,7 +314,6 @@ Key settings:
314
314
  | Setting | Type | Default | Description |
315
315
  |---|---|---|---|
316
316
  | `bounces` | `number` | 3 | Max ray bounce depth |
317
- | `samplesPerPixel` | `number` | 1 | Samples per pixel per frame |
318
317
  | `maxSamples` | `number` | 60 | Max accumulated samples before stopping |
319
318
  | `exposure` | `number` | 1.0 | Exposure value |
320
319
  | `saturation` | `number` | 1.2 | Color saturation |