@galacean/engine-core 1.4.0-alpha.2 → 1.4.0-alpha.3

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": "1.4.0-alpha.2",
3
+ "version": "1.4.0-alpha.3",
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.0-alpha.2"
21
+ "@galacean/engine-math": "1.4.0-alpha.3"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "1.4.0-alpha.2"
24
+ "@galacean/engine-design": "1.4.0-alpha.3"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -18,7 +18,7 @@ export declare class Shader implements IReferable {
18
18
  * ShaderLab must be enabled first as follows:
19
19
  * ```ts
20
20
  * // Import shaderLab
21
- * import { ShaderLab } from "@galacean/engine-shader-lab";
21
+ * import { ShaderLab } from "@galacean/engine-shaderlab";
22
22
  * // Create engine with shaderLab
23
23
  * const engine = await WebGLEngine.create({ canvas: "canvas", shader: new ShaderLab() });
24
24
  * ...