-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
999269b
commit 832b45f
Showing
11 changed files
with
318 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import sceneHall from "../../images/scene-hall.svg?url"; | ||
import sceneHallWall from "../../images/scene-hall-wall.svg?url"; | ||
import sceneRoomBasement from "../../images/scene-room-basement.svg?url"; | ||
import sceneRoomLight from "../../images/scene-room-light.svg?url"; | ||
import hallPaint from "../../images/hall-paint.svg?url"; | ||
import key from "../../images/key.svg?url"; | ||
import backButton from "../../images/back-button.svg?url"; | ||
import flashlight from "../../images/flashlight.svg?url"; | ||
|
||
export default { | ||
sceneHall, | ||
sceneHallWall, | ||
sceneRoomBasement, | ||
sceneRoomLight, | ||
hallPaint, | ||
key, | ||
backButton, | ||
flashlight, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import doorOpen from "../../sounds/door-open.wav?url"; | ||
import doorLocked from "../../sounds/door-locked.wav?url"; | ||
import doorUnlock from "../../sounds/door-unlock.wav?url"; | ||
import swipe from "../../sounds/swipe.m4a?url"; | ||
import button from "../../sounds/button.wav?url"; | ||
import flashlight from "../../sounds/flashlight.wav?url"; | ||
|
||
export default { | ||
doorOpen, | ||
doorLocked, | ||
doorUnlock, | ||
swipe, | ||
button, | ||
flashlight, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const backButtonCoords = { | ||
top: 625, | ||
left: 1100, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ export default class Items { | |
} | ||
|
||
this._idToItem.set(item.id, item); | ||
return item; | ||
} | ||
|
||
get(id) { | ||
|
Oops, something went wrong.