The Gradient class is used to create color gradients.

Gradient 类用于创建颜色渐变。

实现

  • IClone

访问器

方法

  • 参数

    • key: number

      The lifetime, ranging from 0 to 1.

    • value: number

      The Alpha value.

    返回 void

    Add a color Alpha key.

    增加颜色 Alpha 帧。

  • 参数

    • lerpFactor: number

      The interpolation factor.

    • outColor: Color

      The resulting color.

    • startSearchIndex: number = 0

      The starting search index. Default is 0.

    • reverseSearch: boolean = false

      Whether to perform reverse interpolation. Default is false.

    返回 number

    The resulting index.

    Get the alpha value through interpolation.

    通过插值获取透明值。

  • 参数

    • lerpFactor: number

      Interpolation factor, clamped between 0 and 1.

    • out: Color

      The resulting color.

    • startSearchIndex: number = 0

      The starting search index. Default is 0.

    • reverseSearch: boolean = false

      Whether to perform reverse interpolation. Default is false.

    返回 number

    The current index after interpolation.

    Get RGB color through interpolation.

    通过插值获取RGB颜色。

  • 参数

    • index: number

      The index.

    • key: number

      The lifetime, ranging from 0 to 1.

    • value: number

      The Alpha value.

    返回 void

    Update a color Alpha key.

    更新颜色 Alpha 帧。

  • 参数

    • index: number

      The index.

    • key: number

      The lifetime, ranging from 0 to 1.

    • value: Color

      The RGB value.

    返回 void

    Update a color RGB key.

    更新颜色 RGB 帧。