@galacean/engine-shaderlab 1.4.11 → 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/browser.js CHANGED
@@ -632,7 +632,6 @@
632
632
  };
633
633
  LexerUtils.isPpCharacters = function isPpCharacters(charCode) {
634
634
  return charCode === 35 || // #
635
- charCode === 46 || // .
636
635
  charCode === 95 || // _
637
636
  charCode >= 48 && charCode <= 57 || // 0 - 9
638
637
  charCode >= 65 && charCode <= 90 || // A - Z
@@ -6596,7 +6595,7 @@
6596
6595
  ShaderLab._shaderRangePool = ShaderLabUtils.createObjectPool(ShaderRange);
6597
6596
 
6598
6597
  //@ts-ignore
6599
- var version = "1.4.11";
6598
+ var version = "1.4.13";
6600
6599
  var mode = "Release";
6601
6600
  console.log("Galacean Engine ShaderLab Version: " + version + " | Mode: " + mode);
6602
6601