@galacean/engine 1.1.0-beta.31 → 1.1.0-beta.32

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
@@ -6995,7 +6995,8 @@
6995
6995
  _proto._createFontAtlas = function _createFontAtlas() {
6996
6996
  var _this = this, engine = _this._engine;
6997
6997
  var fontAtlas = new FontAtlas(engine);
6998
- var texture = new Texture2D(engine, 256, 256);
6998
+ var texture = new Texture2D(engine, 256, 256, exports.TextureFormat.R8G8B8A8, false);
6999
+ texture.filterMode = exports.TextureFilterMode.Point;
6999
7000
  fontAtlas.texture = texture;
7000
7001
  fontAtlas.isGCIgnored = texture.isGCIgnored = true;
7001
7002
  this._fontAtlases.push(fontAtlas);
@@ -43660,7 +43661,7 @@
43660
43661
  ], GALACEAN_animation_event);
43661
43662
 
43662
43663
  //@ts-ignore
43663
- var version = "1.1.0-beta.31";
43664
+ var version = "1.1.0-beta.32";
43664
43665
  console.log("Galacean engine version: " + version);
43665
43666
  for(var key in CoreObjects){
43666
43667
  Loader.registerClass(key, CoreObjects[key]);