diff --git a/src/constants/respath.ts b/src/constants/respath.ts index a8d9b72..cb0d4e8 100644 --- a/src/constants/respath.ts +++ b/src/constants/respath.ts @@ -48,10 +48,10 @@ export const respath = { return config.H_SCREEN ? "resources/dc/TrophyRoomCell_H.lh" : "resources/dc/TrophyRoomCell.lh" }, - font_Bold : "fonts/Inter-Bold-700.ttf", - font_Medium : "fonts/Inter-Medium-500.ttf", - font_Regular : "fonts/Inter-Regular-400.ttf", - font_SemiBold : "fonts/Inter-SemiBold-600.ttf", + font_Bold: "fonts/Inter-Bold-700.ttf", + font_Medium: "fonts/Inter-Medium-500.ttf", + font_Regular: "fonts/Inter-Regular-400.ttf", + font_SemiBold: "fonts/Inter-SemiBold-600.ttf", // =============================== bg_done: "images/bg_done.png", @@ -64,22 +64,20 @@ export const respath = { home_top_dc_bg_finish: "images/bg_dc_top2.png", dc_top_bg_normal: "images/img_dc_bg2.png", dc_top_bg_finish: "images/img_dc_finished.png", - dc_lights: new Array(), get_dc_lights: function func(): string[] { + const dc_lights: Array = [] const prefix = "sequences/lottie_trophy_light_2x/lottie_trophy_light_2x_00" - if (respath.dc_lights.length < 1) { - for (let i = 0; i < 120; i++) { - let endStr = i.toString() - if (i < 10) { - endStr = `00${i}` - } else if (i < 100) { - endStr = `0${i}` - } - const path = `${prefix + endStr}.png` - respath.dc_lights.push(path) + for (let i = 0; i < 120; i++) { + let endStr = i.toString() + if (i < 10) { + endStr = `00${i}` + } else if (i < 100) { + endStr = `0${i}` } + const path = `${prefix + endStr}.png` + dc_lights.push(path) } - return respath.dc_lights + return dc_lights }, trophy_bg_light_gold: "trophys/img_trophy_bg_light_gold.png", diff --git a/src/models/ResourceManager.ts b/src/models/ResourceManager.ts index 1815e3d..b2dc1c7 100644 --- a/src/models/ResourceManager.ts +++ b/src/models/ResourceManager.ts @@ -32,7 +32,7 @@ export class ResourceManager { }) } - private started : boolean = false + private started: boolean = false public startSchedule(): void { if (this.started) return diff --git a/src/views/Candy.ts b/src/views/Candy.ts index 8946744..1cec402 100644 --- a/src/views/Candy.ts +++ b/src/views/Candy.ts @@ -1,4 +1,4 @@ -import { Stage } from "./Stage" +import type { Stage } from "./Stage" const { regClass } = Laya @@ -22,26 +22,26 @@ export class Candy extends Laya.Script { public onInit(handler: any): void { this._stage = handler - this.owner.on(Laya.Event.CLICK, this, ()=>{ + this.owner.on(Laya.Event.CLICK, this, () => { if (this.available === false) return this._stage.onApplyCandy(this.show, false) }) - this.owner.on(Laya.Event.MOUSE_DOWN, this, ()=>{ + this.owner.on(Laya.Event.MOUSE_DOWN, this, () => { if (this.available === false) return Laya.Tween.to(this.bg_sprite, { alpha: 0 }, 200) Laya.Tween.to(this.mask_sprite, { alpha: 0.1 }, 200) Laya.Tween.to(this.offset, { scaleX: 0.92, scaleY: 0.92 }, 200) - }) - this.owner.on(Laya.Event.MOUSE_UP, this, ()=>{ + }) + this.owner.on(Laya.Event.MOUSE_UP, this, () => { if (this.available === false) return Laya.Tween.to(this.bg_sprite, { alpha: 0.12 }, 200) Laya.Tween.to(this.mask_sprite, { alpha: 0 }, 200) Laya.Tween.to(this.offset, { scaleX: 1, scaleY: 1 }, 200) - }) + }) this.owner.on(Laya.Event.MOUSE_OVER, this, () => { if (this.available === false) return diff --git a/src/views/Difficulty.ts b/src/views/Difficulty.ts index 095df56..4cfd264 100644 --- a/src/views/Difficulty.ts +++ b/src/views/Difficulty.ts @@ -13,7 +13,6 @@ export class Difficulty extends Laya.Script { private offset: Laya.Box // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { - this.offset = this.owner.getChildByName("bottom").getChildByName("offset") as Laya.Box this.offset.y = this.offset.width diff --git a/src/views/GameDone.ts b/src/views/GameDone.ts index 65e5bec..1f2cbc8 100644 --- a/src/views/GameDone.ts +++ b/src/views/GameDone.ts @@ -57,8 +57,8 @@ export class GameDone extends Laya.Script { onAwake(): void { ResourceManager.getInstance().loadTexture(respath.bg_done, this.bg) - ResourceManager.getInstance().loadTexture(respath.bg_done_light, this.obj_light) - ResourceManager.getInstance().loadTexture(respath.bg_done_top, this.obj_top) + ResourceManager.getInstance().loadTexture(respath.bg_done_light, this.obj_light) + ResourceManager.getInstance().loadTexture(respath.bg_done_top, this.obj_top) ResourceManager.getInstance().loadTexture(respath.icon_star2, this.star1) ResourceManager.getInstance().loadTexture(respath.icon_star2, this.star2) ResourceManager.getInstance().loadTexture(respath.icon_star2, this.star3) diff --git a/src/views/common/UISequenceAnimation.ts b/src/views/common/UISequenceAnimation.ts index cb6a1d7..b512b7b 100644 --- a/src/views/common/UISequenceAnimation.ts +++ b/src/views/common/UISequenceAnimation.ts @@ -54,7 +54,6 @@ export class UISequenceAnimation extends Laya.Script { } else { this.owner.skin = path } - this.currentIndex++ } diff --git a/src/views/dc/CalendarUnit.ts b/src/views/dc/CalendarUnit.ts index 03e5d5a..567ef27 100644 --- a/src/views/dc/CalendarUnit.ts +++ b/src/views/dc/CalendarUnit.ts @@ -99,7 +99,7 @@ export class CalendarUnit extends Laya.Script { this.sprite_pie.graphics.clear() this.sprite_pie.graphics.drawPie(this.pieSize, this.pieSize, this.pieSize, 0, 360 * this.progress, "#ffffff") this.sprite_mask.graphics.clear() - this.sprite_mask.graphics.drawCircle(this.obj_mask.width/2, this.obj_mask.width/2, this.obj_mask.width/2, "#1d5cdc") + this.sprite_mask.graphics.drawCircle(this.obj_mask.width / 2, this.obj_mask.width / 2, this.obj_mask.width / 2, "#1d5cdc") } else { this.obj_pie.visible = false this.obj_mask.visible = false @@ -113,7 +113,7 @@ export class CalendarUnit extends Laya.Script { this.sprite_pie.graphics.clear() this.sprite_pie.graphics.drawPie(this.pieSize, this.pieSize, this.pieSize, 0, 360 * this.progress, "#2d3138") this.sprite_mask.graphics.clear() - this.sprite_mask.graphics.drawCircle(this.obj_mask.width/2, this.obj_mask.width/2, this.obj_mask.width/2, "#ffffff") + this.sprite_mask.graphics.drawCircle(this.obj_mask.width / 2, this.obj_mask.width / 2, this.obj_mask.width / 2, "#ffffff") } else { this.obj_pie.visible = false this.obj_mask.visible = false diff --git a/src/views/dc/TrophyRoom.ts b/src/views/dc/TrophyRoom.ts index 66d21d9..e0033dd 100644 --- a/src/views/dc/TrophyRoom.ts +++ b/src/views/dc/TrophyRoom.ts @@ -76,12 +76,12 @@ export class TrophyRoom extends Laya.Script { label.text = years[i].toString() for (let j = 2; j < cellCount + 1; j++) { - const prefab = go.create() - obj_year.addChild(prefab) + const prefab = go.create() + obj_year.addChild(prefab) } let index = -1 for (let j = 1; j < cellCount + 1; j++) { - let obj_cell = obj_year.getChildAt(j) + const obj_cell = obj_year.getChildAt(j) const hbox = obj_cell.getChildByName("HBox") for (let k = 0; k < hbox.numChildren; k++) { const unit = hbox.getChildAt(k).getComponent(TrophyUnit)