rayzee 3.13.1 → 4.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rayzee",
3
- "version": "3.13.1",
3
+ "version": "4.7.1",
4
4
  "type": "module",
5
5
  "description": "Real-time WebGPU path tracing engine built on Three.js",
6
6
  "main": "dist/rayzee.umd.js",
@@ -20,7 +20,13 @@
20
20
  "url": "https://github.com/atul-mourya/RayTracing.git",
21
21
  "directory": "rayzee"
22
22
  },
23
- "keywords": ["path-tracing", "webgpu", "three.js", "ray-tracing", "renderer"],
23
+ "keywords": [
24
+ "path-tracing",
25
+ "webgpu",
26
+ "three.js",
27
+ "ray-tracing",
28
+ "renderer"
29
+ ],
24
30
  "author": "Atul Mourya",
25
31
  "license": "MIT",
26
32
  "scripts": {
@@ -228,7 +228,7 @@ export class PathTracerApp extends EventDispatcher {
228
228
  this.renderer.setPixelRatio( 1.0 );
229
229
 
230
230
  // Setup camera
231
- this._camera = new PerspectiveCamera( 65, width / height || 1, 0.01, 1000 );
231
+ this._camera = new PerspectiveCamera( 60, width / height || 1, 0.01, 1000 );
232
232
  this._camera.position.set( 0, 0, 5 );
233
233
 
234
234
  // Create scenes