@galacean/engine-core 1.3.18 → 1.3.20
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 +211 -154
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +211 -154
- package/dist/module.js +211 -154
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/asset/Loader.d.ts +0 -2
- package/types/particle/ParticleGenerator.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.20",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"types/**/*"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@galacean/engine-math": "1.3.
|
|
21
|
+
"@galacean/engine-math": "1.3.20"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@galacean/engine-design": "1.3.
|
|
24
|
+
"@galacean/engine-design": "1.3.20"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"b:types": "tsc"
|
package/types/asset/Loader.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Engine, EngineConfiguration } from "../Engine";
|
|
2
2
|
import { AssetPromise } from "./AssetPromise";
|
|
3
3
|
import { LoadItem } from "./LoadItem";
|
|
4
|
-
import { RequestConfig } from "./request";
|
|
5
4
|
import { ResourceManager } from "./ResourceManager";
|
|
6
5
|
/**
|
|
7
6
|
* Loader abstract class.
|
|
@@ -35,5 +34,4 @@ export declare abstract class Loader<T> {
|
|
|
35
34
|
constructor(useCache: boolean);
|
|
36
35
|
initialize?(engine: Engine, configuration: EngineConfiguration): Promise<void>;
|
|
37
36
|
abstract load(item: LoadItem, resourceManager: ResourceManager): AssetPromise<T>;
|
|
38
|
-
request<U>(url: string, resourceManager: ResourceManager, config: RequestConfig): AssetPromise<U>;
|
|
39
37
|
}
|
|
@@ -46,6 +46,7 @@ export declare class ParticleGenerator {
|
|
|
46
46
|
private _transformedBoundsCount;
|
|
47
47
|
private _firstActiveTransformedBoundingBox;
|
|
48
48
|
private _firstFreeTransformedBoundingBox;
|
|
49
|
+
private _playStartDelay;
|
|
49
50
|
/**
|
|
50
51
|
* Whether the particle generator is contain alive or is still creating particles.
|
|
51
52
|
*/
|