Unity-Technologies / furioos-sdk-js

Furioos SDK for JavaScript
30 stars 14 forks source link

"onAppInstallProgress" event can not be trigger #49

Open jeffloung opened 2 years ago

jeffloung commented 2 years ago

"onAppInstallProgress" event can not be trigger after click play button.

this.player = new Player(this.appId, "main", this.options);
this.player.onAppInstallProgress((data) => {
  console.log("event onAppInstallProgress", data);
});

Then I debug info in Player.js, it has no onAppInstallProgress event

  _onLoad() {
    // Bind listener for the messages.
    window.addEventListener("message", (e) => {
      console.log(e.data.type)
      switch (e.data.type) {....

furioos version: 1.2.5