fix: 难度选项的颜色类型标注错误

This commit is contained in:
unanmed 2025-10-18 18:46:25 +08:00
parent 4d016c4610
commit fb8236d127
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ export const GameTitle = defineComponent<GameTitleProps>(props => {
const hard = main.levelChoose.map<ButtonOption>(v => {
return {
code: v.hard,
color: core.arrayToRGBA(v.color),
color: core.arrayToRGBA(v.color ?? [1, 1, 1]),
name: v.title,
hard: v.name,
colorTrans: transitionedColor('#fff', 400, hyper('sin', 'out'))!,

View File

@ -225,7 +225,7 @@ interface LevelChooseEvent {
/**
*
*/
color: RGBArray;
color?: RGBArray;
/**
*