feat: 更新关卡预览项的提示文本格式,添加新的遮罩图像和按钮图像
This commit is contained in:
@@ -34,9 +34,9 @@ export class PreviewLevelItem extends Component {
|
||||
hint3: string;
|
||||
}): void {
|
||||
if (this.answerLabel) this.answerLabel.string = `答案:${opts.answer}`;
|
||||
if (this.tips1Label) this.tips1Label.string = `线索一:${opts.hint1}`;
|
||||
if (this.tips2Label) this.tips2Label.string = `线索二:${opts.hint2}`;
|
||||
if (this.tips3Label) this.tips3Label.string = `线索三:${opts.hint3}`;
|
||||
if (this.tips1Label) this.tips1Label.string = opts.hint1;
|
||||
if (this.tips2Label) this.tips2Label.string = opts.hint2;
|
||||
if (this.tips3Label) this.tips3Label.string = opts.hint3;
|
||||
}
|
||||
|
||||
setCover(spriteFrame: SpriteFrame | null): void {
|
||||
|
||||
Reference in New Issue
Block a user