Skip to content

Commit

Permalink
Updated our website's description
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHoangTran committed Apr 19, 2024
1 parent bae9144 commit 8ed2e8d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Assets/Scripts/Jason/ExitLevelScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ private void Update()
{
if (inTriggerZone == true && Input.GetKeyDown(KeyCode.E) && keyLock.doorIsLocked == false)
{

BannerDialogue.hasShown = false;
dialogueBox2.SetActive(true);
GameObject playerObject = GameObject.Find("Player");
Expand All @@ -39,6 +40,7 @@ private void Update()
{
BannerDialogue.hasShown = false;
dialogueBox.SetActive(true);

}
}

Expand Down
3 changes: 3 additions & 0 deletions Assets/Scripts/Jason/KeyLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,19 @@ void Update()
{
if (inTriggerZone == true && Input.GetKeyDown(KeyCode.E) && key.playerHasKey == true)
{

doorIsLocked = false;
BannerDialogue.hasShown = false;
dialogueBox2.SetActive(true);
dialogueBox2.SetActive(false);
realKey.GetComponent<SpriteRenderer>().enabled = false;
exit.animator.SetBool("isUnlocked", true);
}
else if (inTriggerZone == true && Input.GetKeyDown(KeyCode.E) && key.playerHasKey == false)
{
BannerDialogue.hasShown = false;
dialogueBox.SetActive(true);

}
}

Expand Down
13 changes: 12 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,18 @@ <h1>SELENE</h1>
</header>

<div id="description">
<p>Selene is a 2D platformer made in the Unity engine with an emphasis on gravity changing mechanics.</p>
<p>
Selene is a 2D platformer made in the Unity engine with an emphasis on gravity changing mechanics.
</p>
<p>
The year is 2099. Earth's natural resources are scarce and running out. The United States has sent
its state of the art space ship, U.S.S. Selene, to venture into deep space to seek out and gather usable
resources from other planets. However, the crucial mission goes awry when our hero wakes up to find his
crewmates missing and the U.S.S. Selene heading back home to blow Earth up, which can only mean one thing.
The ship's artificial intelligence has gone rogue and become corrupted. Earth's fate is now in our hero's
hands. He must now avoid the space ship's A.I. controlled interior defense system, consisting of robots,
lasers, locked doors, and exposed electrical wires, to march to the ship's cockpit to shut down the A.I.
</p>
<p>To play the game, go to our github repo located
<a href="https://github.com/SCCapstone/TheNameless" target="_blank">here</a>,
and click on the latest release on the right. Download the build's zip file (not the source code).
Expand Down

0 comments on commit 8ed2e8d

Please sign in to comment.