@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.
@@ -756,7 +756,6 @@ var LexerUtils = /*#__PURE__*/ function() {
756
756
  };
757
757
  LexerUtils.isPpCharacters = function isPpCharacters(charCode) {
758
758
  return charCode === 35 || // #
759
- charCode === 46 || // .
760
759
  charCode === 95 || // _
761
760
  charCode >= 48 && charCode <= 57 || // 0 - 9
762
761
  charCode >= 65 && charCode <= 90 || // A - Z
@@ -7850,7 +7849,7 @@ ShaderLab._shaderPositionPool = ShaderLabUtils.createObjectPool(ShaderPosition);
7850
7849
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
7851
7850
 
7852
7851
  //@ts-ignore
7853
- var version = "1.4.12";
7852
+ var version = "1.4.13";
7854
7853
  var mode = "Release";
7855
7854
  mode = "Verbose";
7856
7855
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);