@rings-webgpu/core 1.0.41 → 1.0.42

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.
@@ -42292,7 +42292,7 @@ else if (typeof exports === 'object')
42292
42292
  }
42293
42293
  }
42294
42294
 
42295
- const version = "1.0.41";
42295
+ const version = "1.0.42";
42296
42296
 
42297
42297
  class Engine3D {
42298
42298
  /**
@@ -66281,6 +66281,7 @@ fn frag(){
66281
66281
  used: 0,
66282
66282
  active: 0,
66283
66283
  visible: 0,
66284
+ sceneCount: 0,
66284
66285
  inCacheSinceLoad: 0
66285
66286
  };
66286
66287
  // Configuration options
@@ -66884,6 +66885,7 @@ fn frag(){
66884
66885
  tile.__wasSetVisible = true;
66885
66886
  this.stats.visible++;
66886
66887
  }
66888
+ this.stats.sceneCount++;
66887
66889
  tile.loadingState = LOADED;
66888
66890
  tile.usedLastFrame = true;
66889
66891
  markVisibleTiles(tile, this);
@@ -27,6 +27,7 @@ export interface TilesRendererStats {
27
27
  used: number;
28
28
  active: number;
29
29
  visible: number;
30
+ sceneCount: number;
30
31
  inCacheSinceLoad: number;
31
32
  }
32
33
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rings-webgpu/core",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Rings webgpu Engine",
5
5
  "main": "index.js",
6
6
  "exports": {