BezierCurve: CurveBase & {
    bezierPoints: BezierPoint[];
    type: LifeTimeCurve.BEZIER;
}

A Bézier curve representation for controlling particle properties.

{
* type: LifeTimeCurve.BEZIER,
* bezierPoints: [
* { x: 0, y: 0.275, percentage: 0 },
* { x: 0.1666, y: 0.4416 },
* { x: 0.5066, y: 0.495, percentage: 0.5066 },
* { x: 1, y: 1, percentage: 1 }
* ]
* }