angry-pixel 2.0.14 → 2.0.15

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/lib/index.d.ts CHANGED
@@ -1289,12 +1289,14 @@ declare class SceneManager {
1289
1289
  private currentSceneName;
1290
1290
  private sceneNameToBeLoaded;
1291
1291
  private _loadingScene;
1292
+ private _sceneLoadedThisFrame;
1292
1293
  /** @internal */
1293
1294
  constructor(systemManager: SystemManager, systemFactory: CreateSystemService, entityManager: EntityManager, assetManager: AssetManager);
1294
1295
  addScene(sceneType: SceneType, name: string, openingScene?: boolean): void;
1295
1296
  loadScene(name: string): void;
1296
1297
  loadOpeningScene(): void;
1297
- loadingScene(): boolean;
1298
+ get loadingScene(): boolean;
1299
+ get sceneLoadedThisFrame(): boolean;
1298
1300
  /** @internal */
1299
1301
  update(): void;
1300
1302
  private destroyCurrentScene;