lzb1001 发表于 2022-11-9 02:08:18

blit的位置没看懂,请大神指点

本帖最后由 lzb1001 于 2022-11-9 02:38 编辑

screen.blit(bomb_image, (10, height - 10 - bomb_rect.height)) # 先将全屏炸弹的图片画在屏幕指定的位置
screen.blit(bomb_text, (bomb_rect.width + 20, height - 5 - text_rect.height)) # 在将全屏炸弹的实时剩余数量画在屏幕指定的位置


以第一行代码(10, height - 10 - bomb_rect.height)为例:

第一个10代表横坐标,height - 10 - bomb_rect.height代表纵坐标,但为何最后图片显示的位置会在纵坐标那里?也就是height - 10 - bomb_rect.height没看懂没理解,是不是屏幕高度从下往上减?

请大神指点迷津
页: [1]
查看完整版本: blit的位置没看懂,请大神指点