@galacean/engine-core 2.0.0-alpha.43 → 2.0.0-alpha.44

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": "2.0.0-alpha.43",
3
+ "version": "2.0.0-alpha.44",
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": "2.0.0-alpha.43"
21
+ "@galacean/engine-math": "2.0.0-alpha.44"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "2.0.0-alpha.43"
24
+ "@galacean/engine-design": "2.0.0-alpha.44"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -40,10 +40,10 @@ export declare class PrimitiveMesh {
40
40
  */
41
41
  static createCuboid(engine: Engine, width?: number, height?: number, depth?: number, noLongerAccessible?: boolean): ModelMesh;
42
42
  /**
43
- * Create a plane mesh.
43
+ * Create a plane mesh with U mapped along local +X and V along local +Z.
44
44
  * @param engine - Engine
45
- * @param width - Plane width
46
- * @param height - Plane height
45
+ * @param width - Plane width along the local X axis
46
+ * @param height - Plane height along the local Z axis
47
47
  * @param horizontalSegments - Plane horizontal segments
48
48
  * @param verticalSegments - Plane vertical segments
49
49
  * @param noLongerAccessible - No longer access the vertices of the mesh after creation