@galacean/engine-core 0.0.0-experimental-0.9-plus.0 → 0.0.0-experimental-0.9-plus.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/engine-core",
3
- "version": "0.0.0-experimental-0.9-plus.0",
3
+ "version": "0.0.0-experimental-0.9-plus.2",
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.0.0-experimental-0.9-plus.0"
18
+ "@galacean/engine-math": "0.0.0-experimental-0.9-plus.2"
19
19
  },
20
20
  "devDependencies": {
21
- "@galacean/engine-design": "0.0.0-experimental-0.9-plus.0"
21
+ "@galacean/engine-design": "0.0.0-experimental-0.9-plus.2"
22
22
  },
23
23
  "scripts": {
24
24
  "b:types": "tsc"
package/types/Scene.d.ts CHANGED
@@ -14,6 +14,8 @@ import { ShadowResolution } from "./shadow/enum/ShadowResolution";
14
14
  export declare class Scene extends EngineObject {
15
15
  private static _fogColorProperty;
16
16
  private static _fogParamsProperty;
17
+ private static _sunlightColorProperty;
18
+ private static _sunlightDirectionProperty;
17
19
  /** Scene name. */
18
20
  name: string;
19
21
  /** The background of the scene. */
@@ -38,6 +40,7 @@ export declare class Scene extends EngineObject {
38
40
  private _fogEnd;
39
41
  private _fogDensity;
40
42
  private _fogParams;
43
+ private _sunlightVector3;
41
44
  /**
42
45
  * Number of cascades to use for directional light shadows.
43
46
  */