easter-egg-quest 1.0.8 → 1.0.9

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.
@@ -4195,6 +4195,8 @@ class MotionStage {
4195
4195
  }
4196
4196
  this.bus.emit("narrative:clear");
4197
4197
  await this._wait(1e3);
4198
+ this._lastUpdateTime = Date.now();
4199
+ this._movingAccum = 0;
4198
4200
  this._introPlayed = true;
4199
4201
  }
4200
4202
  update(_dt) {
@@ -4308,8 +4310,9 @@ class RhythmStage {
4308
4310
  }
4309
4311
  this.bus.emit("narrative:clear");
4310
4312
  await this._wait(1e3);
4311
- this._introPlayed = true;
4313
+ this.input.resetPhases();
4312
4314
  this._lastPhaseCount = this.input.phases.length;
4315
+ this._introPlayed = true;
4313
4316
  }
4314
4317
  update(_dt) {
4315
4318
  if (this._status === "complete" || !this._introPlayed) return this._status;