@galacean/engine 1.1.0-beta.28 → 1.1.0-beta.29

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/browser.js CHANGED
@@ -6675,8 +6675,8 @@
6675
6675
  } else {
6676
6676
  word += char;
6677
6677
  wordWidth += charInfo.xAdvance;
6678
- wordMaxAscent = lineMaxAscent = Math.max(wordMaxAscent, ascent);
6679
- wordMaxDescent = lineMaxDescent = Math.max(wordMaxDescent, descent);
6678
+ wordMaxAscent = Math.max(wordMaxAscent, ascent);
6679
+ wordMaxDescent = Math.max(wordMaxDescent, descent);
6680
6680
  }
6681
6681
  }
6682
6682
  }
@@ -43647,7 +43647,7 @@
43647
43647
  ], GALACEAN_animation_event);
43648
43648
 
43649
43649
  //@ts-ignore
43650
- var version = "1.1.0-beta.28";
43650
+ var version = "1.1.0-beta.29";
43651
43651
  console.log("Galacean engine version: " + version);
43652
43652
  for(var key in CoreObjects){
43653
43653
  Loader.registerClass(key, CoreObjects[key]);