@leafer-game/worker 2.1.5 → 2.1.6

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.
@@ -3722,7 +3722,7 @@ const {arcTo: arcTo} = PathCommandDataHelper;
3722
3722
 
3723
3723
  const PathCorner = {
3724
3724
  smooth(data, cornerRadius, _cornerSmoothing) {
3725
- let command, lastCommand, commandLen;
3725
+ let command, lastCommand, commandLen, startXIndex, startYIndex, smoothLen;
3726
3726
  let i = 0, x = 0, y = 0, startX = 0, startY = 0, secondX = 0, secondY = 0, lastX = 0, lastY = 0;
3727
3727
  if (isArray(cornerRadius)) cornerRadius = cornerRadius[0] || 0;
3728
3728
  const len = data.length, three = len === 9;
@@ -3731,6 +3731,11 @@ const PathCorner = {
3731
3731
  command = data[i];
3732
3732
  switch (command) {
3733
3733
  case M$1:
3734
+ smoothLen = smooth.length;
3735
+ if (smoothLen && lastCommand !== Z$1) {
3736
+ smooth[startXIndex] = startX;
3737
+ smooth[startYIndex] = startY;
3738
+ }
3734
3739
  startX = lastX = data[i + 1];
3735
3740
  startY = lastY = data[i + 2];
3736
3741
  i += 3;
@@ -3741,6 +3746,8 @@ const PathCorner = {
3741
3746
  } else {
3742
3747
  smooth.push(M$1, startX, startY);
3743
3748
  }
3749
+ startXIndex = smoothLen + 1;
3750
+ startYIndex = smoothLen + 2;
3744
3751
  break;
3745
3752
 
3746
3753
  case L$2:
@@ -3779,8 +3786,8 @@ const PathCorner = {
3779
3786
  lastCommand = command;
3780
3787
  }
3781
3788
  if (command !== Z$1) {
3782
- smooth[1] = startX;
3783
- smooth[2] = startY;
3789
+ smooth[startXIndex] = startX;
3790
+ smooth[startYIndex] = startY;
3784
3791
  }
3785
3792
  return smooth;
3786
3793
  }
@@ -6976,7 +6983,7 @@ class LeafLevelList {
6976
6983
  }
6977
6984
  }
6978
6985
 
6979
- const version = "2.1.5";
6986
+ const version = "2.1.6";
6980
6987
 
6981
6988
  class LeaferCanvas extends LeaferCanvasBase {
6982
6989
  get allowBackgroundColor() {
@@ -11811,8 +11818,9 @@ function getPatternData(paint, box, image) {
11811
11818
  break;
11812
11819
 
11813
11820
  case "repeat":
11814
- case "brush":
11815
11821
  if (!sameBox || scaleX || rotation || skew) PaintImage.repeatMode(data, box, width, height, tempImage.x, tempImage.y, scaleX, scaleY, rotation, skew, align, paint.freeTransform);
11822
+
11823
+ case "brush":
11816
11824
  if (!repeat) data.repeat = "repeat";
11817
11825
  const count = isObject(repeat);
11818
11826
  if (gap || count) data.gap = getGapData(gap, count && repeat, tempImage.width, tempImage.height, box);
@@ -11823,7 +11831,7 @@ function getPatternData(paint, box, image) {
11823
11831
  default:
11824
11832
  if (scaleX) PaintImage.fillOrFitMode(data, box, tempImage.x, tempImage.y, scaleX, scaleY, rotation);
11825
11833
  }
11826
- if (!data.transform) {
11834
+ if (!data.transform && mode !== "brush") {
11827
11835
  if (box.x || box.y) translate$1(data.transform = get$3(), box.x, box.y);
11828
11836
  }
11829
11837
  if (scaleX) {
@@ -11952,8 +11960,9 @@ function createPattern(paint, ui, canvas, renderOptions) {
11952
11960
  let {scaleX: scaleX, scaleY: scaleY} = PaintImage.getImageRenderScaleData(paint, ui, canvas, renderOptions), id = paint.film ? paint.nowIndex : scaleX + "-" + scaleY;
11953
11961
  if (paint.patternId !== id && !ui.destroyed) {
11954
11962
  if (!(Platform.image.isLarge(paint.image, scaleX, scaleY) && !paint.data.repeat)) {
11955
- const {image: image, brush: brush, data: data} = paint, {opacity: opacity} = paint.originPaint, {transform: transform, gap: gap} = data, fixScale = PaintImage.getPatternFixScale(paint, scaleX, scaleY);
11956
- let imageMatrix, xGap, yGap, {width: width, height: height} = image;
11963
+ const {image: image, brush: brush, data: data} = paint, {transform: transform, gap: gap} = data, fixScale = PaintImage.getPatternFixScale(paint, scaleX, scaleY);
11964
+ let imageMatrix, xGap, yGap, {width: width, height: height} = image, {opacity: opacity} = paint.originPaint;
11965
+ if (brush || opacity === 1) opacity = undefined;
11957
11966
  if (fixScale) scaleX *= fixScale, scaleY *= fixScale;
11958
11967
  width *= scaleX;
11959
11968
  height *= scaleY;