bondage-college-mirr/C001_BeforeClass/Intro/Script.js
Ben987 b445242932 More Chapter 10
More Chapter 10
2017-12-06 21:45:30 -05:00

33 lines
No EOL
1.1 KiB
JavaScript

// Chapter 1 - Intro Load
function C001_BeforeClass_Intro_Load() {
// Time is always 7:40 on the intro, no timer
StopTimer(7.66666667 * 60 * 60 * 1000);
}
// Chapter 1 - Intro Run
function C001_BeforeClass_Intro_Run() {
// Draw the background and player
var ctx = document.getElementById("MainCanvas").getContext("2d");
if (TextPhase <= 2) DrawImage(ctx, CurrentChapter + "/" + CurrentScreen + "/Background1.jpg", 0, 0);
else DrawImage(ctx, CurrentChapter + "/" + CurrentScreen + "/Background2.jpg", 0, 0);
DrawPlayerTransition(ctx);
// Introduce chapter 1 with each clicks
DrawText(ctx, GetText("Intro1"), 450, 50, "White");
if (TextPhase >= 1) DrawText(ctx, GetText("Intro2"), 450, 150, "White");
if (TextPhase >= 2) DrawText(ctx, GetText("Intro3"), 450, 250, "White");
if (TextPhase >= 3) DrawText(ctx, GetText("Intro4"), 450, 350, "White");
if (TextPhase >= 4) DrawText(ctx, GetText("Intro5"), 450, 450, "White");
if (TextPhase >= 5) DrawText(ctx, GetText("Intro6"), 450, 550, "White");
}
// Chapter 1 - Intro Click
function C001_BeforeClass_Intro_Click() {
TextPhase++;
if (TextPhase >= 6)
SetScene(CurrentChapter, "Classroom");
}