babylonjs-editor 5.4.3-alpha.0 → 5.4.3-alpha.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.
@@ -2,6 +2,7 @@ import { PhysicsAggregate } from "babylonjs";
2
2
  export { AbstractMesh } from "babylonjs";
3
3
  declare module "babylonjs" {
4
4
  interface AbstractMesh {
5
+ _waitingLod?: any;
5
6
  physicsAggregate?: PhysicsAggregate | null;
6
7
  }
7
8
  }
@@ -27,7 +27,7 @@ export declare class UniqueNumber {
27
27
  * Returns a new array composed of distinct elements.
28
28
  * @param array defines the reference to the source array.
29
29
  */
30
- export declare function unique<T>(array: T[]): T[];
30
+ export declare function unique<T>(array: T[], property?: string): T[];
31
31
  /**
32
32
  * Sorts the given array alphabetically.
33
33
  * @param array defines the array containing the elements to sort alphabetically.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-editor",
3
- "version": "5.4.3-alpha.0",
3
+ "version": "5.4.3-alpha.2",
4
4
  "description": "Babylon.js Editor is a Web Application helping artists to work with Babylon.js",
5
5
  "productName": "Babylon.js Editor",
6
6
  "main": "build/src/index.js",