@galacean/effects-threejs 0.0.1-alpha.3 → 1.0.0
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 -9
- package/dist/index.min.js +3 -3
- package/dist/index.mjs +9 -9
- 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:
|
|
6
|
+
* Version: v1.0.0
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
'use strict';
|
|
@@ -25231,12 +25231,6 @@ var Composition = /** @class */ (function () {
|
|
|
25231
25231
|
enumerable: false,
|
|
25232
25232
|
configurable: true
|
|
25233
25233
|
});
|
|
25234
|
-
/**
|
|
25235
|
-
* 获取合成的时长
|
|
25236
|
-
*/
|
|
25237
|
-
Composition.prototype.getDuration = function () {
|
|
25238
|
-
return this.content.duration;
|
|
25239
|
-
};
|
|
25240
25234
|
Object.defineProperty(Composition.prototype, "isDestroyed", {
|
|
25241
25235
|
/**
|
|
25242
25236
|
* 获取销毁状态
|
|
@@ -25247,6 +25241,12 @@ var Composition = /** @class */ (function () {
|
|
|
25247
25241
|
enumerable: false,
|
|
25248
25242
|
configurable: true
|
|
25249
25243
|
});
|
|
25244
|
+
/**
|
|
25245
|
+
* 获取合成的时长
|
|
25246
|
+
*/
|
|
25247
|
+
Composition.prototype.getDuration = function () {
|
|
25248
|
+
return this.content.duration;
|
|
25249
|
+
};
|
|
25250
25250
|
/**
|
|
25251
25251
|
* 重新开始合成
|
|
25252
25252
|
*/
|
|
@@ -27554,9 +27554,9 @@ Geometry.create = function (engine, options) {
|
|
|
27554
27554
|
Mesh.create = function (engine, props) {
|
|
27555
27555
|
return new ThreeMesh(engine, props);
|
|
27556
27556
|
};
|
|
27557
|
-
var version = "0.0
|
|
27557
|
+
var version = "1.0.0";
|
|
27558
27558
|
console.info({
|
|
27559
|
-
content: '[Galacean Effects THREEJS] version: ' + "0.0
|
|
27559
|
+
content: '[Galacean Effects THREEJS] version: ' + "1.0.0",
|
|
27560
27560
|
type: LOG_TYPE,
|
|
27561
27561
|
});
|
|
27562
27562
|
|