@galacean/engine-core 1.4.9 → 1.4.11
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 +106 -95
- package/dist/main.js.map +1 -1
- package/dist/module.js +106 -95
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/Scene.d.ts +0 -1
- package/types/material/Material.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.11",
|
|
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.4.
|
|
21
|
+
"@galacean/engine-math": "1.4.11"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@galacean/engine-design": "1.4.
|
|
24
|
+
"@galacean/engine-design": "1.4.11"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"b:types": "tsc"
|
package/types/Scene.d.ts
CHANGED
|
@@ -170,7 +170,6 @@ export declare class Scene extends EngineObject {
|
|
|
170
170
|
* @returns Entity
|
|
171
171
|
*/
|
|
172
172
|
findEntityByPath(path: string): Entity | null;
|
|
173
|
-
private _addToRootEntityList;
|
|
174
173
|
private _computeLinearFogParams;
|
|
175
174
|
private _computeExponentialFogParams;
|
|
176
175
|
private _getSunlight;
|