@galacean/engine-core 0.9.11 → 0.9.12
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 +170 -41
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +170 -41
- package/dist/module.js +170 -41
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/2d/sprite/Sprite.d.ts +0 -4
- package/types/2d/sprite/SpriteMask.d.ts +0 -5
- package/types/sky/Sky.d.ts +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"types/**/*"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@galacean/engine-math": "0.9.
|
|
18
|
+
"@galacean/engine-math": "0.9.12"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@galacean/engine-design": "0.9.
|
|
21
|
+
"@galacean/engine-design": "0.9.12"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"b:types": "tsc"
|
package/types/sky/Sky.d.ts
CHANGED
|
@@ -7,8 +7,16 @@ export declare class Sky {
|
|
|
7
7
|
private static _epsilon;
|
|
8
8
|
private static _viewProjMatrix;
|
|
9
9
|
private static _projectionMatrix;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
|
|
10
|
+
private _material;
|
|
11
|
+
private _mesh;
|
|
12
|
+
/**
|
|
13
|
+
* Material of the sky.
|
|
14
|
+
*/
|
|
15
|
+
get material(): Material;
|
|
16
|
+
set material(value: Material);
|
|
17
|
+
/**
|
|
18
|
+
* Mesh of the sky.
|
|
19
|
+
*/
|
|
20
|
+
get mesh(): Mesh;
|
|
21
|
+
set mesh(value: Mesh);
|
|
14
22
|
}
|