@rings-webgpu/core 1.0.40 → 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.
- package/dist/rings.es.js +3 -3
- package/dist/rings.es.js.map +2 -2
- package/dist/rings.es.max.js +4 -2
- package/dist/rings.umd.js +3 -3
- package/dist/rings.umd.js.map +2 -2
- package/dist/rings.umd.max.js +4 -2
- package/dist/types/loader/parser/tileRenderer/TilesRenderer.d.ts +1 -0
- package/package.json +1 -1
package/dist/rings.es.max.js
CHANGED
|
@@ -42285,7 +42285,7 @@ class PostProcessingComponent extends ComponentBase {
|
|
|
42285
42285
|
}
|
|
42286
42286
|
}
|
|
42287
42287
|
|
|
42288
|
-
const version = "1.0.
|
|
42288
|
+
const version = "1.0.42";
|
|
42289
42289
|
|
|
42290
42290
|
class Engine3D {
|
|
42291
42291
|
/**
|
|
@@ -55171,7 +55171,7 @@ let GSplatStreamRenderer = class extends RenderNode {
|
|
|
55171
55171
|
* Update node before rendering
|
|
55172
55172
|
*/
|
|
55173
55173
|
nodeUpdate(view, passType, renderPassState, clusterLightingBuffer) {
|
|
55174
|
-
if (this._validCount > 0 && view?.camera
|
|
55174
|
+
if (this._validCount > 0 && view?.camera) {
|
|
55175
55175
|
if (view.camera.viewMatrix) {
|
|
55176
55176
|
this.scheduleOrder(view.camera.viewMatrix);
|
|
55177
55177
|
}
|
|
@@ -66274,6 +66274,7 @@ class TilesRenderer {
|
|
|
66274
66274
|
used: 0,
|
|
66275
66275
|
active: 0,
|
|
66276
66276
|
visible: 0,
|
|
66277
|
+
sceneCount: 0,
|
|
66277
66278
|
inCacheSinceLoad: 0
|
|
66278
66279
|
};
|
|
66279
66280
|
// Configuration options
|
|
@@ -66877,6 +66878,7 @@ class TilesRenderer {
|
|
|
66877
66878
|
tile.__wasSetVisible = true;
|
|
66878
66879
|
this.stats.visible++;
|
|
66879
66880
|
}
|
|
66881
|
+
this.stats.sceneCount++;
|
|
66880
66882
|
tile.loadingState = LOADED;
|
|
66881
66883
|
tile.usedLastFrame = true;
|
|
66882
66884
|
markVisibleTiles(tile, this);
|