gpt4 book ai didi

python - 我如何阻止它消失?

转载 作者:行者123 更新时间:2023-12-04 09:05:25 25 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题.

去年关闭。




Improve this question




我正在尝试在这里做一个 pygame 代码,但它没有按我想要的方式工作,我想修复屏幕上的这个圆圈,你们能帮我吗?

while True:
clock.tick(60)

window.blit(bg, (0,0))

# circulo #

for event in pg.event.get():
if event.type == pg.KEYDOWN:
if event.key == pg.K_q:
clock.tick(1)
pg.draw.circle(window, (5,5,5), [120, 120], 60, 1)
continue

最佳答案

问题是你(可能)每帧都用 window.blit(bg, (0,0)) 清除屏幕。 .
然后,如果用户按 q,则仅针对该帧绘制一个圆圈。再过几毫秒(可能小于 1),重新绘制背景。因此,根据您的系统,人类可能永远不会注意到正在绘制的圆圈。
解决此问题的一种方法是仅设置一个 bool “标志”,以便重新绘制圆圈,直到标志再次变回为止。

draw_circle = False   # Should the circle be drawn?

while True:
clock.tick(60)

# re-draw the scene
window.blit(bg, (0,0))

# circulo #
if draw_circle:
pg.draw.circle(window, (5,5,5), [120, 120], 60, 1)

for event in pg.event.get():
if event.type == pg.KEYDOWN:
if event.key == pg.K_q:
draw_circle = not draw_circle # toggle circle on/off

关于python - 我如何阻止它消失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63459630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com