@galacean/effects-plugin-spine 2.4.2 → 2.4.4

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/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * Description: Galacean Effects player spine plugin
4
4
  * Author: Ant Group CO., Ltd.
5
5
  * Contributors: 十弦
6
- * Version: v2.4.2
6
+ * Version: v2.4.4
7
7
  */
8
8
 
9
9
  'use strict';
@@ -10522,16 +10522,16 @@ function setBlending(material, mode) {
10522
10522
  material.blendFunction = [
10523
10523
  EFFECTS.glContext.DST_COLOR,
10524
10524
  EFFECTS.glContext.ONE_MINUS_SRC_ALPHA,
10525
- EFFECTS.glContext.DST_COLOR,
10525
+ EFFECTS.glContext.ONE,
10526
10526
  EFFECTS.glContext.ONE_MINUS_SRC_ALPHA
10527
10527
  ];
10528
10528
  break;
10529
10529
  case exports.BlendMode.Screen:
10530
10530
  material.blendFunction = [
10531
10531
  EFFECTS.glContext.ONE,
10532
- EFFECTS.glContext.ONE_MINUS_SRC_ALPHA,
10533
10532
  EFFECTS.glContext.ONE_MINUS_SRC_COLOR,
10534
- EFFECTS.glContext.ONE_MINUS_SRC_ALPHA
10533
+ EFFECTS.glContext.ONE,
10534
+ EFFECTS.glContext.ONE_MINUS_SRC_COLOR
10535
10535
  ];
10536
10536
  break;
10537
10537
  case exports.BlendMode.Additive:
@@ -11528,7 +11528,7 @@ EFFECTS.registerPlugin("spine", /*#__PURE__*/ function(AbstractPlugin) {
11528
11528
  }(EFFECTS.AbstractPlugin), EFFECTS.VFXItem);
11529
11529
  /**
11530
11530
  * 插件版本号
11531
- */ var version = "2.4.2";
11531
+ */ var version = "2.4.4";
11532
11532
  EFFECTS.logger.info("Plugin spine version: " + version + ".");
11533
11533
  if (version !== EFFECTS__namespace.version) {
11534
11534
  console.error("注意:请统一 Spine 插件与 Player 版本,不统一的版本混用会有不可预知的后果!", "\nAttention: Please ensure the Spine plugin is synchronized with the Player version. Mixing and matching incompatible versions may result in unpredictable consequences!");