* @function LevelRenderer.Tool.Color.prototype.toHSBA * @description 转换为HSBA颜色。 * @param {string} color - 颜色。 * @returns {string} HSBA颜色,hsba(h,s,b,a)
(color)
| 553 | * @returns {string} HSBA颜色,hsba(h,s,b,a) |
| 554 | */ |
| 555 | toHSBA(color) { |
| 556 | return this.convert(color, 'hsba'); |
| 557 | } |
| 558 | |
| 559 | /** |
| 560 | * @function LevelRenderer.Tool.Color.prototype.toHSB |