0
我正在製作一本插圖故事書,用戶點擊以閱讀故事的下一部分。我做了三個不同的場景(三個不同的頁面)。我可以使用eventListener從場景一切換到場景二,但我無法從場景二切換到場景三。HTML5遊戲開發
我希望能夠在
場景之間切換。當用戶點擊鼠標:
- 如果當前場景是第一位的,轉到第二
- 如果當前場景是第二個,到第三
- 如果當前場景是第三個,回去第一
但我不知道該怎麼做。任何幫助表示讚賞。謝謝!
我還應該提到我正在學習基礎知識,以便我可以繼續進行遊戲開發。所以這是一個非常基本的代碼。
這裏是我的代碼:
var c = document.querySelector("#c");
var ctx = c.getContext("2d");
var x = document.getElementById("c");
//Scene One
function sceneOne(){
ctx.fillStyle = "rgb(235,247,255)";
ctx.fillRect(0,0,750,750);
ctx.fillStyle = "rgb(0, 85, 255)";
ctx.font = "70px Impact";
ctx.fillText("The Story of Winston", 40, 130);
};
//Scene Two
function sceneTwo() {
ctx.fillStyle = "rgb(173,239,255)";
ctx.fillRect(0,0,750,750);
ctx.fillStyle="rgb(7, 14, 145)";
ctx.fillText("Lil Winston is born!", 10, 100);
};
//Scee Three
function sceneThree() {
ctx.fillStyle = "rgb(173,239,255)";
ctx.fillRect(0,0,750,750);
ctx.fillStyle = "rgb(7, 14, 145)";
ctx.fillText("Winston grows up!", 10, 100);
};
//Calling scene one
sceneOne();