sin() グラフのように、波状の繰り返しパターンでボールを動かすにはどうすればよいでしょうか?
質問する
3203 次
1 に答える
5
カウンター、pygame のClock
、または単にpygame.time.get_ticks
時間を把握するために使用できます。開始するためのサンプル コードを次に示します。
import math
import pygame
pygame.init()
screen = pygame.display.set_mode((400,400))
while True:
t = pygame.time.get_ticks() / 2 % 400 # scale and loop time
x = t
y = math.sin(t/50.0) * 100 + 200 # scale sine wave
y = int(y) # needs to be int
screen.fill((0,0,0))
pygame.draw.circle(screen, (255,255,255), (x, y), 40)
pygame.display.flip()
于 2013-02-02T19:30:30.793 に答える