作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是原始问题:
如上所示,我需要打印蓝屏。这是我所做的:
import pygame
pygame.init()
blue = (0, 0, 255)
size = (width, height) = (640, 640)
screen = pygame.display.set_mode(size)
""" Game Drawing """
screen.fill(blue)
pyagme.draw.rect(screen, color, [x, y, 50, 50])
pygame.draw.rect(screen, blue, [mouseX, mouseY, 50, 50])
pygame.display.flip()
最佳答案
好的,让我们修复代码中的错误。
import pygame
pygame.init()
blue = (0, 0, 255)
red = (255, 0, 0)
size = (640, 640)
screen = pygame.display.set_mode(size)
screen.fill(blue)
pygame.draw.rect(screen, red, [0,590, 50, 640])
pygame.display.update()
crashed = False
while not crashed:
for event in pygame.event.get():
if event.type == pygame.QUIT:
crashed = True
pygame.quit()
关于python - 谁能告诉我如何使打印屏幕变蓝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62096393/
我正在使用 Bootstrap-vue.JS 制作一组单选按钮。我有一个重置功能,可以选中其中一个单选按钮。当我调用该函数时,单选按钮的值按照我的预期发生了变化,但是单选按钮本身并没有显示它的变化(圆
我是一名优秀的程序员,十分优秀!