@galacean/engine-shaderlab 1.4.12 → 1.4.13

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
@@ -628,7 +628,6 @@ var LexerUtils = /*#__PURE__*/ function() {
628
628
  };
629
629
  LexerUtils.isPpCharacters = function isPpCharacters(charCode) {
630
630
  return charCode === 35 || // #
631
- charCode === 46 || // .
632
631
  charCode === 95 || // _
633
632
  charCode >= 48 && charCode <= 57 || // 0 - 9
634
633
  charCode >= 65 && charCode <= 90 || // A - Z
@@ -6592,7 +6591,7 @@ ShaderLab._shaderPositionPool = ShaderLabUtils.createObjectPool(ShaderPosition);
6592
6591
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
6593
6592
 
6594
6593
  //@ts-ignore
6595
- var version = "1.4.12";
6594
+ var version = "1.4.13";
6596
6595
  var mode = "Release";
6597
6596
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);
6598
6597