@galacean/engine-core 1.3.8 → 1.3.10
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 +4 -0
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +4 -0
- package/dist/module.js +4 -0
- package/dist/module.js.map +1 -1
- package/package.json +6 -3
- package/types/2d/assembler/IAssembler.d.ts +0 -1
- package/types/2d/data/VertexData2D.d.ts +0 -1
- package/types/2d/text/CharRenderData.d.ts +0 -1
- package/types/2d/text/CharRenderDataPool.d.ts +0 -1
- package/types/RenderPipeline/Basic2DBatcher.d.ts +0 -19
- package/types/RenderPipeline/ClassPool.d.ts +0 -19
- package/types/RenderPipeline/IPoolElement.d.ts +0 -3
- package/types/RenderPipeline/RenderData.d.ts +0 -14
- package/types/RenderPipeline/SpriteBatcher.d.ts +0 -1
- package/types/RenderPipeline/SpriteMaskBatcher.d.ts +0 -11
- package/types/RenderPipeline/SpriteMaskManager.d.ts +0 -1
- package/types/RenderPipeline/SpriteMaskRenderData.d.ts +0 -12
- package/types/RenderPipeline/SpriteRenderData.d.ts +0 -14
- package/types/RenderPipeline/TextRenderData.d.ts +0 -8
- package/types/animation/AnimatorTransition.d.ts +0 -14
package/dist/miniprogram.js
CHANGED
|
@@ -20026,6 +20026,7 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
|
|
|
20026
20026
|
*/ SystemInfo._initialize = function _initialize() {
|
|
20027
20027
|
{
|
|
20028
20028
|
if (typeof engineMiniprogramAdapter.navigator == "undefined") {
|
|
20029
|
+
SystemInfo._isBrowser = false;
|
|
20029
20030
|
return;
|
|
20030
20031
|
}
|
|
20031
20032
|
var userAgent = engineMiniprogramAdapter.navigator.userAgent;
|
|
@@ -20137,6 +20138,9 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
|
|
|
20137
20138
|
(function() {
|
|
20138
20139
|
/** The operating system is running on. */ SystemInfo.operatingSystem = "";
|
|
20139
20140
|
})();
|
|
20141
|
+
(function() {
|
|
20142
|
+
/** @internal */ SystemInfo._isBrowser = true;
|
|
20143
|
+
})();
|
|
20140
20144
|
(function() {
|
|
20141
20145
|
/** Whether the system support SIMD. */ SystemInfo._simdSupported = null;
|
|
20142
20146
|
})();
|
package/dist/module.js
CHANGED
|
@@ -20021,6 +20021,7 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
|
|
|
20021
20021
|
*/ SystemInfo._initialize = function _initialize() {
|
|
20022
20022
|
{
|
|
20023
20023
|
if (typeof navigator == "undefined") {
|
|
20024
|
+
SystemInfo._isBrowser = false;
|
|
20024
20025
|
return;
|
|
20025
20026
|
}
|
|
20026
20027
|
var userAgent = navigator.userAgent;
|
|
@@ -20132,6 +20133,9 @@ var rePropName = RegExp(// Match anything that isn't a dot or bracket.
|
|
|
20132
20133
|
(function() {
|
|
20133
20134
|
/** The operating system is running on. */ SystemInfo.operatingSystem = "";
|
|
20134
20135
|
})();
|
|
20136
|
+
(function() {
|
|
20137
|
+
/** @internal */ SystemInfo._isBrowser = true;
|
|
20138
|
+
})();
|
|
20135
20139
|
(function() {
|
|
20136
20140
|
/** Whether the system support SIMD. */ SystemInfo._simdSupported = null;
|
|
20137
20141
|
})();
|