|
|
@ -1,13 +1,15 @@ |
|
|
|
import Button from "@/components/Button"; |
|
|
|
import { gameManager,defineWindow, stageManager } from "@/Game"; |
|
|
|
import Sound from "@/Game/Sound"; |
|
|
|
import { Container, Text } from "pixi.js"; |
|
|
|
import { Container, Graphics, Text } from "pixi.js"; |
|
|
|
|
|
|
|
import Circle from "./circle" |
|
|
|
|
|
|
|
|
|
|
|
export default defineWindow("welcome", class{ |
|
|
|
stage:Container = null |
|
|
|
elements: Record<string, Graphics> = {} |
|
|
|
text: any |
|
|
|
|
|
|
|
constructor(stage: Container){ |
|
|
|
this.stage = stage |
|
|
@ -19,13 +21,13 @@ export default defineWindow("welcome", class{ |
|
|
|
circle.on("touchend", ()=>{ |
|
|
|
stageManager.changeStage("welcome2") |
|
|
|
}) |
|
|
|
let text = new Text("修仙人生日常") |
|
|
|
text.x = gameManager.getInfo().width-text.width |
|
|
|
text.y = gameManager.getInfo().height-text.height |
|
|
|
this.stage.addChild(text) |
|
|
|
this.text = new Text("修仙人生日常") |
|
|
|
|
|
|
|
this.stage.addChild(this.text) |
|
|
|
const btn = Button({text: "修仙人生日常"}) |
|
|
|
btn.on("touchend", ()=>{ |
|
|
|
Sound.play('my-sound'); |
|
|
|
// Sound.play('my-sound');
|
|
|
|
stageManager.changeStage("loading") |
|
|
|
}) |
|
|
|
this.stage.addChild(btn) |
|
|
|
} |
|
|
@ -33,7 +35,9 @@ export default defineWindow("welcome", class{ |
|
|
|
Sound.stop("my-sound") |
|
|
|
console.log("onUnLoad 1"); |
|
|
|
} |
|
|
|
// update(){
|
|
|
|
update(){ |
|
|
|
this.text.x = gameManager.getInfo().width-this.text.width |
|
|
|
this.text.y = gameManager.getInfo().height-this.text.height |
|
|
|
// console.log(22);
|
|
|
|
// }
|
|
|
|
} |
|
|
|
}) |