@galacean/engine-shaderlab 1.4.12 → 1.4.14

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.
@@ -752,7 +752,6 @@ var LexerUtils = /*#__PURE__*/ function() {
752
752
  };
753
753
  LexerUtils.isPpCharacters = function isPpCharacters(charCode) {
754
754
  return charCode === 35 || // #
755
- charCode === 46 || // .
756
755
  charCode === 95 || // _
757
756
  charCode >= 48 && charCode <= 57 || // 0 - 9
758
757
  charCode >= 65 && charCode <= 90 || // A - Z
@@ -7846,7 +7845,7 @@ ShaderLab._shaderPositionPool = ShaderLabUtils.createObjectPool(ShaderPosition);
7846
7845
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
7847
7846
 
7848
7847
  //@ts-ignore
7849
- var version = "1.4.12";
7848
+ var version = "1.4.14";
7850
7849
  var mode = "Release";
7851
7850
  mode = "Verbose";
7852
7851
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);