猪猪虾 发表于 2020-4-24 10:48:15

83讲,乌龟隐身程序(粘在下面了),26,27,29行代码是啥意思


#创建透明的乌龟
import pygame
import sys   #退出程序时要用
from pygame.locals import *

pygame.init()
size= width,height = 600,600
bg=(0,0,0)   #背景填充

clock = pygame.time.Clock()
screen=pygame.display.set_mode(size,RESIZABLE)
pygame.display.set_caption("隐身")

#convert_alpha,想用a通道,就用它转换图片格式,否则只用convert,即可表示透明度,a通道,0表示完全透明,255表示完全不透明
#convert,表示将图片的像素格式转换为与背景图像相同
turtle=pygame.image.load("turtle.png").convert_alpha()
background = pygame.image.load("background.png").convert()


#获取图像的位置矩形
position = turtle.get_rect()
position.center = width // 2, height // 2

def blit_alpha(target,source,location,opacity):
    x = location
    y = location
    temp = pygame.Surface((source.get_width(),source.get_height())).convert()
    temp.blit(target,(-x,-y))
    temp.blit(source,(0,0))
    temp.set_alpha(opacity)
    target.blit(temp,location)

while True:
    for event in pygame.event.get():
      if event.type == QUIT:
            sys.exit()
    screen.blit(background,(0,0))
    blit_alpha(screen,turtle,position,200)

    pygame.display.flip()
    clock.tick(30)

qiuyouzhi 发表于 2020-4-24 10:54:18

location是一个有两个元素的元组,所以x和y就是取出这个元组的两个元素。
而29行就是绘制图像啊?

猪猪虾 发表于 2020-4-24 11:02:11

qiuyouzhi 发表于 2020-4-24 10:54
location是一个有两个元素的元组,所以x和y就是取出这个元组的两个元素。
而29行就是绘制图像啊?

(-x,-y)啥意思

qiuyouzhi 发表于 2020-4-24 11:05:17

猪猪虾 发表于 2020-4-24 11:02
(-x,-y)啥意思

你把-号去掉看看效果呗

猪猪虾 发表于 2020-4-24 11:08:49

qiuyouzhi 发表于 2020-4-24 11:05
你把-号去掉看看效果呗

乌龟那一片变黑了,没懂{:5_104:}

weiter 发表于 2020-4-24 12:28:33

猪猪虾 发表于 2020-4-24 11:02
(-x,-y)啥意思

把坐标的值换成他的相反数,(反向)

猪猪虾 发表于 2020-4-24 12:58:50

weiter 发表于 2020-4-24 12:28
把坐标的值换成他的相反数,(反向)

postion传的是一个坐标,他把坐标变成相反数干啥,比如说我现在是(2,3),变成(-2,-3)?目的是?

歌者文明清理员 发表于 2023-2-22 22:43:46

猪猪虾 发表于 2020-4-24 12:58
postion传的是一个坐标,他把坐标变成相反数干啥,比如说我现在是(2,3),变成(-2,-3)?目的是?

移到屏幕外面,也就是消失
页: [1]
查看完整版本: 83讲,乌龟隐身程序(粘在下面了),26,27,29行代码是啥意思