Skip to content

Commit

Permalink
Merge pull request barryclark#16 from chaelimee/main
Browse files Browse the repository at this point in the history
README.md 수정
  • Loading branch information
chaelimee authored Oct 25, 2023
2 parents a1a4353 + 3f2c3a5 commit 7d0b26d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
4 changes: 3 additions & 1 deletion G-snake.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,13 @@ def message(msg,color):
y1_change = snake_block
x1_change = 0

if x1 >= dis_width or x1 < 0 or y1 >= dis_height or y1 < 0:
game_close = True

x1 += x1_change
y1 += y1_change
dis.fill(white)
pygame.draw.rect(dis, black, [x1, y1, 10, 10])
pygame.draw.rect(dis, black, [x1, y1, snake_block,snake_block])

pygame.display.update()

Expand Down
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# pygame-SJ

Samsun Jjambbong

---

### Snake game
Snake game은 키보드를 사용하여 뱀을 조종해 먹이를 먹고 몸길이를 키우며 점수를 얻는 게임



---
### :exclamation: 게임 규칙 :exclamation:

#### :question: 게임 방법
방향키를 사용하여 플레이 한다.

→ : 오른쪽으로 이동
← : 왼쪽으로 이동
↑ : 위로 이동
↓ : 아래로 이동


#### 점수 획득 방법
- 먹이를 먹으면 점수가 1점씩 오름


#### 게임 종료 :thumbsdown:
- 뱀이 컴퓨터 화면을 벗어났을 때
- 몸의 길이가 늘어나 자신의 몸과 부딪혔을 때


# 피하기 게임

## 게임소개
Expand Down Expand Up @@ -38,4 +68,4 @@ R키: 게임 종료시 다시시작
## 추후 개발 전망
>일시정지와 재게 기능 추가 예정
R키를 게임 종료 전에도 다시 시작 가능하게 수정 예정
>>>>>>> c7b41ee67f617c3e039c56570525d0012931fbf0

0 comments on commit 7d0b26d

Please sign in to comment.