英文: my drawing in pygame is covered by something and I want to animate it what does not work 问题 我创建了...
如何修改此代码以向星形添加条纹图案?
英文: How do I modify this code to add a striped pattern to the star? 问题 我有这个创建Pygame中星星的脚本。 import py...
ValueError: 字节长度与格式和分辨率大小不相等
英文: ValueError: Bytes length does not equal format and resolution size 问题 So, I was creating some py...
获取Pygame中的屏幕分辨率
英文: Get the screen resolution in Pygame 问题 我有一个pygame程序,我想要它全屏显示,可以使用以下代码: pygame.display.set_mode((...
将形状列表转换为蒙版。
英文: Pygame convert list of shapes to mask 问题 目标是在同一时刻,当一个形状或几个形状经过屏幕时,显示背景中的图像。我的方法是创建一个形状列表(矩形或圆形),...
与瓷砖的玩家碰撞不起作用,而是穿过它们掉下去。
英文: Player collision with tiles not working, instead falling through them 问题 基本上,我正在学习Pygame,并且正在从教程...
矩形在触地时振动。
英文: rectangle vibrating when touching the ground 问题 大家好。我正在尝试学习关于瓦片地图中的碰撞。但是,我在y轴碰撞方面遇到了问题。当玩家矩形触碰地面...
What is the main reason for pygame.init()
英文: What is the main reason for pygame.init() 问题 我正在学习Python中的Pygame,并且在理解pygame.init()函数的目的方面遇到了困难。...
为什么我的Pygame程序中”Screen Fill”没有移除”Blit”?
英文: Why does Screen Fill not Remove Blit in my Pygame Program? 问题 我正在开发一个使用 Pygame 的 Python 程序。我无法完全...
为什么要检查 pygame.QUIT,当可以点击 ‘X’ 按钮关闭窗口?
英文: Why is pygame.QUIT being checked when the 'X' button can be clicked and the window would...