aurea-eden 1.46.1 → 1.46.2

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.
@@ -60443,7 +60443,7 @@ SPREAD LOG: Target ${nodeId} Port ${basePort}`);
60443
60443
  return text.replace(/\n/g, "\\n").replace(/'/g, "\\'");
60444
60444
  }
60445
60445
  }
60446
- const version = "1.46.1";
60446
+ const version = "1.46.2";
60447
60447
  var Easing = Object.freeze({
60448
60448
  Linear: Object.freeze({
60449
60449
  None: function(amount) {
@@ -66406,6 +66406,11 @@ class Element extends Mesh {
66406
66406
  context.font = `Bold ${scaledFontSize}px Arial`;
66407
66407
  const worldScale = 0.4 / resolutionScale;
66408
66408
  sprite.scale.set(canvas.width * worldScale, (mainHeight + tailHeight) * worldScale, 1);
66409
+ if (sprite.material && sprite.material.map) {
66410
+ sprite.material.map.dispose();
66411
+ sprite.material.map = new CanvasTexture(canvas);
66412
+ sprite.material.map.minFilter = LinearFilter;
66413
+ }
66409
66414
  }
66410
66415
  context.clearRect(0, 0, canvas.width, canvas.height);
66411
66416
  this._drawBubblePath(context, canvas.width, mainHeight, tailHeight, scaledBorderRadius);