@galacean/effects-threejs 2.5.3 → 2.5.5
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/index.js +9 -7
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/dist/index.mjs +9 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Description: Galacean Effects runtime threejs plugin for the web
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
5
|
* Contributors: 燃然,飂兮,十弦,云垣,茂安,意绮
|
|
6
|
-
* Version: v2.5.
|
|
6
|
+
* Version: v2.5.5
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
'use strict';
|
|
@@ -5949,8 +5949,8 @@ function initGLContext() {
|
|
|
5949
5949
|
copy(WebGLRenderingContext);
|
|
5950
5950
|
copy(WebGLRenderingContext.prototype);
|
|
5951
5951
|
} else {
|
|
5952
|
-
initErrors.push(// iOS 16 lockdown mode
|
|
5953
|
-
"iOS16 lockdown mode, WebGL Constants not in global");
|
|
5952
|
+
initErrors.push(isIOS() ? // iOS 16 lockdown mode
|
|
5953
|
+
"iOS16 lockdown mode, WebGL Constants not in global" : "WebGL Constants not in global, please check your environment");
|
|
5954
5954
|
}
|
|
5955
5955
|
if (!initErrors.length && !("HALF_FLOAT" in glContext)) {
|
|
5956
5956
|
// @ts-expect-error set default value
|
|
@@ -6570,7 +6570,9 @@ function _loadVideo() {
|
|
|
6570
6570
|
return [
|
|
6571
6571
|
2,
|
|
6572
6572
|
new Promise(function(resolve, reject) {
|
|
6573
|
-
var pending = video.play()
|
|
6573
|
+
var pending = video.play().catch(function(e) {
|
|
6574
|
+
reject(e);
|
|
6575
|
+
});
|
|
6574
6576
|
if (pending) {
|
|
6575
6577
|
void pending.then(function() {
|
|
6576
6578
|
return resolve(video);
|
|
@@ -28598,7 +28600,7 @@ function getStandardSpriteContent(sprite, transform) {
|
|
|
28598
28600
|
return ret;
|
|
28599
28601
|
}
|
|
28600
28602
|
|
|
28601
|
-
var version$2 = "2.5.
|
|
28603
|
+
var version$2 = "2.5.5";
|
|
28602
28604
|
var v0 = /^(\d+)\.(\d+)\.(\d+)(-(\w+)\.\d+)?$/;
|
|
28603
28605
|
var standardVersion = /^(\d+)\.(\d+)$/;
|
|
28604
28606
|
var reverseParticle = false;
|
|
@@ -31848,7 +31850,7 @@ registerPlugin("sprite", SpriteLoader, exports.VFXItem);
|
|
|
31848
31850
|
registerPlugin("particle", ParticleLoader, exports.VFXItem);
|
|
31849
31851
|
registerPlugin("cal", CalculateLoader, exports.VFXItem);
|
|
31850
31852
|
registerPlugin("interact", InteractLoader, exports.VFXItem);
|
|
31851
|
-
var version$1 = "2.5.
|
|
31853
|
+
var version$1 = "2.5.5";
|
|
31852
31854
|
logger.info("Core version: " + version$1 + ".");
|
|
31853
31855
|
|
|
31854
31856
|
var _obj;
|
|
@@ -33450,7 +33452,7 @@ setMaxSpriteMeshItemCount(8);
|
|
|
33450
33452
|
*/ Mesh.create = function(engine, props) {
|
|
33451
33453
|
return new ThreeMesh(engine, props);
|
|
33452
33454
|
};
|
|
33453
|
-
var version = "2.5.
|
|
33455
|
+
var version = "2.5.5";
|
|
33454
33456
|
logger.info("THREEJS plugin version: " + version + ".");
|
|
33455
33457
|
|
|
33456
33458
|
exports.AbstractPlugin = AbstractPlugin;
|