
const particleSystem = new Cesium.ParticleSystem({
image: imgWater,//图片地址
//颜色
startColor: Cesium.Color.fromCssColorString('#E0EEEE').withAlpha(0.5),
endColor: Cesium.Color.WHITE.withAlpha(0.5),
//大小比例
startScale: 5,
endScale: 1,
// endScale: 7,
//设置粒子图发射之后的最小/最大速度(以米/秒为单位),值越大,尾巴飘的越高
// speed: 200,
minimumSpeed: 100,
maximumSpeed: 300,
imageSize: new Cesium.Cartesian2(3, 3),
emissionRate: 500, //数量
//粒子寿命
//lifetime: 0.5,
minimumParticleLife: 1.2,
maximumParticleLife: 6,
// bursts: [
// new Cesium.ParticleBurst({
// time: 5.0,
// minimum: 10,
// maximum: 100
// }),
// new Cesium.ParticleBurst({
// time: 10.0,
// minimum: 50,
// max