Compare commits

..

1 Commits

Author SHA1 Message Date
AncTe
29e5c71d91
Merge 4d016c4610 into 820dc5bf4c 2025-10-15 10:21:01 +00:00
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 ?? [1, 1, 1]),
color: core.arrayToRGBA(v.color),
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;
/**
*