@woosh/meep-engine 2.85.3 → 2.85.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/build/meep.cjs +1 -1
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +1 -1
- package/package.json +5 -3
- package/src/engine/simulation/Ticker.d.ts +10 -0
package/build/meep.cjs
CHANGED
|
@@ -103296,7 +103296,7 @@ class Engine {
|
|
|
103296
103296
|
|
|
103297
103297
|
if (!this.__using_external_entity_manager) {
|
|
103298
103298
|
// subscribe simulator to common ticker
|
|
103299
|
-
this.ticker.
|
|
103299
|
+
this.ticker.onTick.add(timeDelta => {
|
|
103300
103300
|
const t0 = performance.now();
|
|
103301
103301
|
this.entityManager.simulate(timeDelta);
|
|
103302
103302
|
|