Skip to content

Commit

Permalink
2f bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
soojeongmin committed Jul 5, 2024
1 parent 7006c9e commit cefdb8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions BitCamp/201Room.html
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,10 @@


function showConfirmationDialog(scene, itemName) {
if (itemName === '비상구 열쇠') {
return;
}

confirmBox.setAlpha(1);
confirmText.setAlpha(1).setText(`${itemName}를 사용하시겠습니까?`);
yesButton.setAlpha(1);
Expand All @@ -463,14 +467,12 @@
yesButton.on('pointerdown', () => {
useYuriRoomKey(scene);
});
} else if (itemName === '비상구 열쇠') {
yesButton.on('pointerdown', () => {
useExitKey(scene);
});
}
}




function hideConfirmationDialog() {
confirmBox.setAlpha(0);
confirmText.setAlpha(0);
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<p>더 도어란 세 개의 문(스토리)가 하나의 게임으로 묶여 있다는 의미를 가지는 서비스 이름입니다.<br>
더 도어 시리즈는 세 가지의 각기 다른 스토리는 물론, 엔딩 이후에도 플레이를 유도할 수 있는 여러 엔딩이 존재하며,<br>
해결에 시간이 드는 어렵고 복잡한 퍼즐 요소를 포함하고 있어 타 게임과의 차별성을 가집니다.<br>
또한, 추후에는 여러 기종에서의 플레이를 지원해 플레이 기종에 제한을 두지 않으려 합니다.</p>
추후에는 여러 기종에서의 플레이를 지원해 플레이 기종에 제한을 두지 않으려 합니다.</p>

<h4>502호의 문</h4>
<p>당신은 익숙한 방 안에서 깨어납니다. 방 안은 컴퓨터, 교재, 화이트보드 등 익숙한 물건들로 가득차 있습니다. 문에 달려있는 자물쇠를 뺀다면 말이죠.</p>
Expand Down

0 comments on commit cefdb8f

Please sign in to comment.