|
@@ -26411,6 +26411,7 @@ declare module "babylonjs/Particles/solidParticleSystem" {
|
|
|
/**
|
|
|
* Inserts the shape model geometry in the global SPS mesh by updating the positions, indices, normals, colors, uvs arrays
|
|
|
* @param p the current index in the positions array to be updated
|
|
|
+ * @param ind the current index in the indices array
|
|
|
* @param shape a Vector3 array, the shape geometry
|
|
|
* @param positions the positions array to be updated
|
|
|
* @param meshInd the shape indices array
|
|
@@ -26983,7 +26984,7 @@ declare module "babylonjs/Particles/solidParticle" {
|
|
|
* Creates a new sorted particle
|
|
|
* @param materialIndex
|
|
|
*/
|
|
|
- constructor(materialIndex: number);
|
|
|
+ constructor(ind: number, indLength: number, materialIndex: number);
|
|
|
}
|
|
|
}
|
|
|
declare module "babylonjs/Collisions/meshCollisionData" {
|
|
@@ -94240,6 +94241,7 @@ declare module BABYLON {
|
|
|
/**
|
|
|
* Inserts the shape model geometry in the global SPS mesh by updating the positions, indices, normals, colors, uvs arrays
|
|
|
* @param p the current index in the positions array to be updated
|
|
|
+ * @param ind the current index in the indices array
|
|
|
* @param shape a Vector3 array, the shape geometry
|
|
|
* @param positions the positions array to be updated
|
|
|
* @param meshInd the shape indices array
|
|
@@ -94805,7 +94807,7 @@ declare module BABYLON {
|
|
|
* Creates a new sorted particle
|
|
|
* @param materialIndex
|
|
|
*/
|
|
|
- constructor(materialIndex: number);
|
|
|
+ constructor(ind: number, indLength: number, materialIndex: number);
|
|
|
}
|
|
|
}
|
|
|
declare module BABYLON {
|