@galacean/engine-shaderlab 1.6.6 → 1.6.7

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/module.js CHANGED
@@ -4960,7 +4960,9 @@ var PpUtils = /*#__PURE__*/ function() {
4960
4960
  generatedIdx = generatedIdxEnd;
4961
4961
  }
4962
4962
  ret.push(source.slice(startIdx));
4963
- return ret.join("");
4963
+ var result = ret.join("");
4964
+ // Replace multiple consecutive newlines with a single newline to clean up the output
4965
+ return result.replace(/\n\s*\n+/g, "\n");
4964
4966
  };
4965
4967
  return PpUtils;
4966
4968
  }();
@@ -8054,7 +8056,7 @@ ShaderLab._shaderPositionPool = ShaderLabUtils.createObjectPool(ShaderPosition);
8054
8056
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
8055
8057
 
8056
8058
  //@ts-ignore
8057
- var version = "1.6.6";
8059
+ var version = "1.6.7";
8058
8060
  var mode = "Release";
8059
8061
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);
8060
8062