@luminocity/lemonate-engine 26.6.3 → 26.6.4
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/lemonate.es.js +4 -4
- package/dist/lemonate.js +4 -4
- package/dist/lemonate.min.js +2 -2
- package/dist/lemonate.umd.js +4 -4
- package/dist/player.zip +0 -0
- package/package.json +1 -1
package/dist/lemonate.es.js
CHANGED
|
@@ -11447,7 +11447,7 @@ class Item extends EventEmitter {
|
|
|
11447
11447
|
}
|
|
11448
11448
|
}
|
|
11449
11449
|
|
|
11450
|
-
var engine$1 = "26.6.
|
|
11450
|
+
var engine$1 = "26.6.4";
|
|
11451
11451
|
var bullet = "3.26";
|
|
11452
11452
|
var lua = "5.4.3";
|
|
11453
11453
|
var packageVersionInfo = {
|
|
@@ -68131,7 +68131,7 @@ class RenderView {
|
|
|
68131
68131
|
// ----------------------------------------------------------------------------------
|
|
68132
68132
|
if (!renderPassInfo.playerIsPaused) {
|
|
68133
68133
|
if (doPhysics) {
|
|
68134
|
-
this.engine.profiler.
|
|
68134
|
+
await this.engine.profiler.measureAsync("Physics", "processUpdate", async () => {
|
|
68135
68135
|
this.engine.physics.processPhysicsUpdate();
|
|
68136
68136
|
});
|
|
68137
68137
|
}
|
|
@@ -68181,7 +68181,7 @@ class RenderView {
|
|
|
68181
68181
|
// Animate scene
|
|
68182
68182
|
// ----------------------------------------------------------------------------------
|
|
68183
68183
|
if (!renderPassInfo.playerIsPaused) {
|
|
68184
|
-
this.engine.profiler.
|
|
68184
|
+
await this.engine.profiler.measureAsync("RenderView", "animate", async () => {
|
|
68185
68185
|
this._animate(sceneGraphCollection, renderPassInfo.deltaPlayerTimeMs);
|
|
68186
68186
|
});
|
|
68187
68187
|
}
|
|
@@ -70672,7 +70672,7 @@ class Renderer {
|
|
|
70672
70672
|
}
|
|
70673
70673
|
renderParticleSystems(renderPassInfo) {
|
|
70674
70674
|
if (this.particleSystems && !renderPassInfo.playerIsPaused) {
|
|
70675
|
-
this.engine.profiler.measure("Particles", "render",
|
|
70675
|
+
this.engine.profiler.measure("Particles", "render", () => {
|
|
70676
70676
|
this.particleSystems.forEach(system => {
|
|
70677
70677
|
system.setSize(renderPassInfo.resolution.x, renderPassInfo.resolution.y);
|
|
70678
70678
|
// in the testing environment a time provider has been set.
|
package/dist/lemonate.js
CHANGED
|
@@ -134370,7 +134370,7 @@ fn tsl_biquadraticTexture_array( map : texture_2d_array<f32>, coord : vec2f, iRe
|
|
|
134370
134370
|
}
|
|
134371
134371
|
}
|
|
134372
134372
|
|
|
134373
|
-
var engine$1 = "26.6.
|
|
134373
|
+
var engine$1 = "26.6.4";
|
|
134374
134374
|
var bullet = "3.26";
|
|
134375
134375
|
var lua = "5.4.3";
|
|
134376
134376
|
var packageVersionInfo = {
|
|
@@ -205297,7 +205297,7 @@ fn tsl_biquadraticTexture_array( map : texture_2d_array<f32>, coord : vec2f, iRe
|
|
|
205297
205297
|
// ----------------------------------------------------------------------------------
|
|
205298
205298
|
if (!renderPassInfo.playerIsPaused) {
|
|
205299
205299
|
if (doPhysics) {
|
|
205300
|
-
this.engine.profiler.
|
|
205300
|
+
await this.engine.profiler.measureAsync("Physics", "processUpdate", async () => {
|
|
205301
205301
|
this.engine.physics.processPhysicsUpdate();
|
|
205302
205302
|
});
|
|
205303
205303
|
}
|
|
@@ -205347,7 +205347,7 @@ fn tsl_biquadraticTexture_array( map : texture_2d_array<f32>, coord : vec2f, iRe
|
|
|
205347
205347
|
// Animate scene
|
|
205348
205348
|
// ----------------------------------------------------------------------------------
|
|
205349
205349
|
if (!renderPassInfo.playerIsPaused) {
|
|
205350
|
-
this.engine.profiler.
|
|
205350
|
+
await this.engine.profiler.measureAsync("RenderView", "animate", async () => {
|
|
205351
205351
|
this._animate(sceneGraphCollection, renderPassInfo.deltaPlayerTimeMs);
|
|
205352
205352
|
});
|
|
205353
205353
|
}
|
|
@@ -207838,7 +207838,7 @@ fn tsl_biquadraticTexture_array( map : texture_2d_array<f32>, coord : vec2f, iRe
|
|
|
207838
207838
|
}
|
|
207839
207839
|
renderParticleSystems(renderPassInfo) {
|
|
207840
207840
|
if (this.particleSystems && !renderPassInfo.playerIsPaused) {
|
|
207841
|
-
this.engine.profiler.measure("Particles", "render",
|
|
207841
|
+
this.engine.profiler.measure("Particles", "render", () => {
|
|
207842
207842
|
this.particleSystems.forEach(system => {
|
|
207843
207843
|
system.setSize(renderPassInfo.resolution.x, renderPassInfo.resolution.y);
|
|
207844
207844
|
// in the testing environment a time provider has been set.
|