Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / pygame_lesson4_diy4

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 7f0179d8 authored 2 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

auto save

parent d9f6e227
Show whitespace changes
Inline Side-by-side
Showing with 24 additions and 0 deletions
  • ppp.py
  • 狗.webp
ppp.py 0 → 100644
View file @ 7f0179d8
import pygame
from pygame import locals
pygame.init()
a=pygame.display.set_mode((660,800))
b=pygame.image.load('狗.webp')
shetou=right
while True:
for event in pygame.event.get():
print(event)
if event.type == locals.QUIT:
exit()
if event.type == locals.KEYDOWN:
if event.key == locals.K_UP and shetou!=down:
shetou=up
if event.key == locals.K_DOWN and shetou!=up:
shetou=down
if event.key == locals.K_RIGHT and shetou!=left:
shetou=right
if event.key == locals.K_LEFT and shetou!=right:
shetou=left
a.blit(b,(0,0))
pygame.display.update()
\ No newline at end of file
This diff is collapsed. Click to expand it.
狗.webp 0 → 100644
View file @ 7f0179d8
File added
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment