|
@@ -66306,6 +66306,9 @@ declare module "babylonjs/Particles/gpuParticleSystem" {
|
|
|
* @returns the current particle system
|
|
|
*/
|
|
|
addColorGradient(gradient: number, color1: Color4, color2?: Color4): GPUParticleSystem;
|
|
|
+ private _refreshColorGradient;
|
|
|
+ /** Force the system to rebuild all gradients */
|
|
|
+ forceRefreshGradients(): void;
|
|
|
/**
|
|
|
* Remove a specific color gradient
|
|
|
* @param gradient defines the gradient to remove
|
|
@@ -66331,6 +66334,7 @@ declare module "babylonjs/Particles/gpuParticleSystem" {
|
|
|
* @returns the current particle system
|
|
|
*/
|
|
|
removeSizeGradient(gradient: number): GPUParticleSystem;
|
|
|
+ private _refreshFactorGradient;
|
|
|
/**
|
|
|
* Adds a new angular speed gradient
|
|
|
* @param gradient defines the gradient to use (between 0 and 1)
|
|
@@ -137155,6 +137159,9 @@ declare module BABYLON {
|
|
|
* @returns the current particle system
|
|
|
*/
|
|
|
addColorGradient(gradient: number, color1: Color4, color2?: Color4): GPUParticleSystem;
|
|
|
+ private _refreshColorGradient;
|
|
|
+ /** Force the system to rebuild all gradients */
|
|
|
+ forceRefreshGradients(): void;
|
|
|
/**
|
|
|
* Remove a specific color gradient
|
|
|
* @param gradient defines the gradient to remove
|
|
@@ -137180,6 +137187,7 @@ declare module BABYLON {
|
|
|
* @returns the current particle system
|
|
|
*/
|
|
|
removeSizeGradient(gradient: number): GPUParticleSystem;
|
|
|
+ private _refreshFactorGradient;
|
|
|
/**
|
|
|
* Adds a new angular speed gradient
|
|
|
* @param gradient defines the gradient to use (between 0 and 1)
|