@babylonjs/inspector 8.45.2-preview → 8.45.3-preview
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/lib/index.d.ts +9 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -20014,7 +20014,7 @@ declare class BaseParticleSystem implements IClipPlanesHolder {
|
|
|
20014
20014
|
_billboardMode: number;
|
|
20015
20015
|
/**
|
|
20016
20016
|
* Gets or sets the billboard mode to use when isBillboardBased = true.
|
|
20017
|
-
* Value can be: ParticleSystem.BILLBOARDMODE_ALL, ParticleSystem.BILLBOARDMODE_Y, ParticleSystem.BILLBOARDMODE_STRETCHED
|
|
20017
|
+
* Value can be: ParticleSystem.BILLBOARDMODE_ALL, ParticleSystem.BILLBOARDMODE_Y, ParticleSystem.BILLBOARDMODE_STRETCHED, ParticleSystem.PARTICLES_BILLBOARDMODE_STRETCHED_LOCAL
|
|
20018
20018
|
*/
|
|
20019
20019
|
get billboardMode(): number;
|
|
20020
20020
|
set billboardMode(value: number);
|
|
@@ -21394,6 +21394,10 @@ declare class SystemBlock extends NodeParticleBlock {
|
|
|
21394
21394
|
* Gets or sets a boolean indicating if the system is billboard based
|
|
21395
21395
|
*/
|
|
21396
21396
|
isBillboardBased: boolean;
|
|
21397
|
+
/**
|
|
21398
|
+
* Gets or sets the billboard mode for the particle system
|
|
21399
|
+
*/
|
|
21400
|
+
billBoardMode: number;
|
|
21397
21401
|
/**
|
|
21398
21402
|
* Gets or sets a boolean indicating if the system coordinate space is local or global
|
|
21399
21403
|
*/
|
|
@@ -22133,6 +22137,10 @@ declare class Particle {
|
|
|
22133
22137
|
_randomNoiseCoordinates2: Nullable<Vector3>;
|
|
22134
22138
|
/** @internal */
|
|
22135
22139
|
_localPosition?: Vector3;
|
|
22140
|
+
/**
|
|
22141
|
+
* Callback triggered when the particle is reset
|
|
22142
|
+
*/
|
|
22143
|
+
onReset: Nullable<() => void>;
|
|
22136
22144
|
/**
|
|
22137
22145
|
* Creates a new instance Particle
|
|
22138
22146
|
* @param particleSystem the particle system the particle belongs to
|