所以我正在尝试为iOS重新创建 Flappy Fall 游戏,我无法让一个圈子消失而另一个圈子出现。现在我把它作为主循环。
while True:
if newBall==True:
x=rand(50,w-50)
y=-7
newBall=False
if x in range(xBasket-length,xBasket+length) and y in range(yBasket-int(length/2),yBasket+int(length/2)): #If the circle hit's the basket
newBall=True #Creates a new ball
score+=1
elif x in range(0,w) and y in range(700,751): #If it hits the ground
break
if newBall==False: #If there is no new ball yet
y-=7
win.fill(BLACK)
font=pygame.font.Font(None,48)
show=font.render(str(score),1,RED,None)
win.blit(show,(200,150))
pygame.draw.rect(win,RED,(0,700,w,h),0) #ground
for event in pygame.event.get():
if event.type==QUIT:
pygame.quit()
sys.exit()
if event.type==KEYDOWN:
if event.key==K_LEFT and xBasket-length!=0:
xBasket-=5
if event.key==K_RIGHT and xBasket+length!=w:
xBasket+=5
pygame.draw.circle(win,BLUE,(x,y),7) #ball that falls
pygame.draw.polygon(win,WHITE,((xBasket-length,yBasket-int(length/2)),(xBasket+length,yBasket-int(length/2)),(xBasket+length,yBasket+int(length/2)),(xBasket-length,yBasket+int(length/2)),0)) #basket
pygame.display.update()
time.delay(5)
s(0.001)
我不知道它出了什么问题,因为“篮子”出现得很好。
答案 0 :(得分:0)
尝试
print x,y
在绘制圆圈之前检查您的值。看起来您的y值是负值,我相信*您需要在画布上绘制正坐标。
编辑:确认,我通过将y = -7更改为y = 300来使代码正常工作,屏幕上有一个小蓝球。此外,它可能是不相关的,但我必须编辑字体行阅读:
show=font.render(str(score),1,RED)#,None)
但我认为这与我的python和pygame版本有关。
答案 1 :(得分:0)
在第12行,你只有y = -7你可能还想在它之前包含x = rand(50,50-w)行,这样你就有x
和{{1 }}位置而不仅仅是y
位置。
y
x = rand(50, 50-w)