質問編集履歴

3

こーど修正

2021/06/10 06:34

投稿

Senno
Senno

スコア1

test CHANGED
File without changes
test CHANGED
@@ -48,13 +48,13 @@
48
48
 
49
49
  pygame.display.set_caption("パイソン pygameで画像表示する")
50
50
 
51
- image = pygame.image.load("tdu2.jpg")
51
+ image = pygame.image.load("x.jpg")
52
52
 
53
53
  clock=pygame.time.Clock()
54
54
 
55
55
  vx=vy=1
56
56
 
57
- imageCosmos = pygame.image.load("cosmo.png")
57
+ imageCosmos = pygame.image.load("x.png")
58
58
 
59
59
  y = 720
60
60
 

2

コード修正

2021/06/10 06:34

投稿

Senno
Senno

スコア1

test CHANGED
File without changes
test CHANGED
@@ -38,31 +38,25 @@
38
38
 
39
39
 
40
40
 
41
- pygame.init()
42
-
43
- screen = pygame.display.set_mode((1280, 720),FULLSCREEN)
44
-
45
- pygame.display.set_caption("パイソン pygameで画像表示する")
46
-
47
- image = pygame.image.load("z.jpg")
48
-
49
-
50
-
51
- vx=vy=10
52
-
53
- imageCosmos = pygame.image.load("x.png")
54
-
55
- clock=pygame.time.Clock()
56
-
57
- y = 720
58
-
59
-
60
-
61
-
62
-
63
41
 
64
42
 
65
43
  def main():
44
+
45
+ pygame.init()
46
+
47
+ screen = pygame.display.set_mode((1280, 720),FULLSCREEN)
48
+
49
+ pygame.display.set_caption("パイソン pygameで画像表示する")
50
+
51
+ image = pygame.image.load("tdu2.jpg")
52
+
53
+ clock=pygame.time.Clock()
54
+
55
+ vx=vy=1
56
+
57
+ imageCosmos = pygame.image.load("cosmo.png")
58
+
59
+ y = 720
66
60
 
67
61
  while True:
68
62
 

1

コードを追記しました

2021/06/10 06:33

投稿

Senno
Senno

スコア1

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,87 @@
26
26
 
27
27
  しかし、指定座標への移動、その次の座標への移動方法がわかりません。
28
28
 
29
+ ###
29
30
 
31
+ ```python
32
+
33
+ import pygame
34
+
35
+ import sys
36
+
37
+ from pygame.locals import *
38
+
39
+
40
+
41
+ pygame.init()
42
+
43
+ screen = pygame.display.set_mode((1280, 720),FULLSCREEN)
44
+
45
+ pygame.display.set_caption("パイソン pygameで画像表示する")
46
+
47
+ image = pygame.image.load("z.jpg")
48
+
49
+
50
+
51
+ vx=vy=10
52
+
53
+ imageCosmos = pygame.image.load("x.png")
54
+
55
+ clock=pygame.time.Clock()
56
+
57
+ y = 720
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ def main():
66
+
67
+ while True:
68
+
69
+ clock.tick(60)
70
+
71
+ y = 720
72
+
73
+ screen.blit(imageCosmos,(0,0))
74
+
75
+ if -3000 < y:
76
+
77
+ screen.blit(image, (0,y))
78
+
79
+ y -= vy
80
+
81
+
82
+
83
+ pygame.display.update()
84
+
85
+
86
+
87
+ for event in pygame.event.get():
88
+
89
+ if event.type == QUIT:
90
+
91
+ pygame.quit()
92
+
93
+ sys.exit()
94
+
95
+ if event.type == KEYDOWN:
96
+
97
+ if event.key == K_ESCAPE:
98
+
99
+ pygame.quit()
100
+
101
+ sys.exit()
102
+
103
+
104
+
105
+
106
+
107
+ main()
108
+
109
+ ```
30
110
 
31
111
 
32
112