setStartColorRandom 设置初始颜色 - 随机
setStartColorRandom
类型: MethodDeclaration
所属类: ParticleElement
定义位置: animation.ts
描述
设置初始颜色 - 随机
返回值
类型: void
源代码
位置: 第 2475 行
private setStartColorRandom(): void {
    const {min, max} = this.data.color as ParticleColorRandom
    const {color} = this
    this.colorChanged = true
    color[0] = Math.randomBetween(min[0], max[0])
    color[1] = Math.randomBetween(min[1], max[1])
    color[2] = Math.randomBetween(min[2], max[2])
    color[3] = Math.randomBetween(min[3], max[3])
  }
文档生成时间:2025/7/21 20:53:39