@galacean/engine-core 1.3.8 → 1.3.9

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/main.js CHANGED
@@ -20025,6 +20025,7 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
20025
20025
  */ SystemInfo._initialize = function _initialize() {
20026
20026
  {
20027
20027
  if (typeof navigator == "undefined") {
20028
+ SystemInfo._isBrowser = false;
20028
20029
  return;
20029
20030
  }
20030
20031
  var userAgent = navigator.userAgent;
@@ -20136,6 +20137,9 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
20136
20137
  (function() {
20137
20138
  /** The operating system is running on. */ SystemInfo.operatingSystem = "";
20138
20139
  })();
20140
+ (function() {
20141
+ /** @internal */ SystemInfo._isBrowser = true;
20142
+ })();
20139
20143
  (function() {
20140
20144
  /** Whether the system support SIMD. */ SystemInfo._simdSupported = null;
20141
20145
  })();