commit
dfc063f270
@ -75,7 +75,7 @@ function draw() {
|
|||||||
|
|
||||||
// title screen
|
// title screen
|
||||||
case globalStates.titleScreen:
|
case globalStates.titleScreen:
|
||||||
drawTitleScreen();
|
|
||||||
break;
|
break;
|
||||||
// level transition
|
// level transition
|
||||||
case globalStates.levelTransition:
|
case globalStates.levelTransition:
|
||||||
@ -107,6 +107,7 @@ function absoluteDraw() {
|
|||||||
// title screen
|
// title screen
|
||||||
case globalStates.titleScreen:
|
case globalStates.titleScreen:
|
||||||
drawTitleScreenUI();
|
drawTitleScreenUI();
|
||||||
|
drawTitleScreen();
|
||||||
break;
|
break;
|
||||||
// level transition
|
// level transition
|
||||||
case globalStates.levelTransition:
|
case globalStates.levelTransition:
|
||||||
|
@ -17,16 +17,19 @@ function handleTitleScreen(){
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
centerCameraOn(0,0)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function handleMainScreen(){
|
function handleMainScreen(){
|
||||||
|
if(rectpoint({x:415, y:200, w: 300, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
|
globalState = globalStates.levelTransition;
|
||||||
|
timer = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if(timer > 20){
|
if(timer > 20){
|
||||||
if(rectpoint({x:415, y:200, w: 300, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
|
||||||
globalState = globalStates.levelTransition;
|
|
||||||
timer = 0;
|
|
||||||
}
|
|
||||||
if(rectpoint({x:415, y:550, w: 300, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
if(rectpoint({x:415, y:550, w: 300, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
titleScreenState = "credits"
|
titleScreenState = "credits"
|
||||||
timer = 0;
|
timer = 0;
|
||||||
@ -38,7 +41,7 @@ function handleMainScreen(){
|
|||||||
|
|
||||||
|
|
||||||
function handleCredits(){
|
function handleCredits(){
|
||||||
|
//console.log(`X ${cursor.x}, Y ${cursor.y}`);
|
||||||
if(timer > 20){
|
if(timer > 20){
|
||||||
if(rectpoint({x:395, y:550, w: 140, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
if(rectpoint({x:395, y:550, w: 140, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
titleScreenState = "main";
|
titleScreenState = "main";
|
||||||
@ -48,6 +51,26 @@ function handleCredits(){
|
|||||||
timer++;
|
timer++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Rsninja
|
||||||
|
if(rectpoint({x:400, y:145, w: 340, h: 30}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
|
window.open('https://rsninja.dev/', '_blank');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Silas
|
||||||
|
if(rectpoint({x:420, y:227, w: 350, h: 31}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
|
window.open('https://exvacuum.dev', '_blank');
|
||||||
|
}
|
||||||
|
|
||||||
|
//Evan
|
||||||
|
if(rectpoint({x:430, y:307, w: 360, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
|
window.open('https://retrylife.ca/', '_blank');
|
||||||
|
}
|
||||||
|
|
||||||
|
// // William
|
||||||
|
if(rectpoint({x:460, y:382, w: 420, h: 50}, {x:cursor.x, y:cursor.y}) && mouseDown[0]){
|
||||||
|
window.open('https://wm-c.dev', '_blank');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,15 +90,27 @@ function drawTitleScreen(){
|
|||||||
if(titleScreenState === "credits"){
|
if(titleScreenState === "credits"){
|
||||||
text("CREDITS", 250, 50, "green", 8, 300);
|
text("CREDITS", 250, 50, "green", 8, 300);
|
||||||
|
|
||||||
|
text("rsninja dev", 250, 130, "green", 5, 1000);
|
||||||
|
|
||||||
|
text("Silas Bartha", 250, 210, "green", 5, 1000);
|
||||||
|
|
||||||
|
text("Evan Pratten", 250, 290, "green", 5, 1000);
|
||||||
|
|
||||||
|
text("William Meathrel", 250, 370, "green", 5, 1000)
|
||||||
|
|
||||||
|
//text("Sally Lopez", 250, 320, "green", 5, 1000)
|
||||||
|
|
||||||
rect(395, 550, 140, 50, "green");
|
rect(395, 550, 140, 50, "green");
|
||||||
text("Back", 345, 535, "white", 5, 150);
|
text("Back", 345, 535, "white", 5, 150);
|
||||||
|
|
||||||
|
text("*Names are links to their pages", 705, 495, "green", 2, 100);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user