我正在尝试制作每像素2D照明系统,但我一直遇到一个奇怪的错误。这是我的代码,其中包含解释:
import pygame, sys, math
white = (255, 255, 255)
black = (0, 0, 0)
screen_width = 640
screen_height = 480
pygame.init()
pygame.display.set_caption("Light sources")
screen = pygame.display.set_mode([screen_width, screen_height])
clock = pygame.time.Clock()
这些是任何pygame游戏的常规设置行
darkness = pygame.image.load("grafiikka/pimeys.png")
darkness.set_alpha(254)
lights_list = [] ### For controlling all light sources at a time
装入单色黑暗图像。除了其他一切之外,这将使它变暗。然后,我会通过改变光区域中黑暗的阿尔法值来模拟光线。
class lightsource: ### The parameters for a light
def ___init___(self, loc, ang, direction, radius):
self.loc = loc
self.ang = ang
self.dir = direction
self.radius = radius
我制作了lightsource类
def LightDraw(): ### Drawing the lights, pixel per pixel
for v in lights_list:
for i in range (int((v.dir - v.ang/2)), int((v.dir + v.ang/2))):
for l in range (0, v.radius):
if int(i) < 90 and int(i) >= 0:
x = (v.loc[0]) + int(-l * math.cos(math.radians(i)))
y = (v.loc[1]) + int(-l * math.sin(math.radians(i)))
elif i < 180 and i >= 90:
x = (v.loc[0]) + int(l * math.cos(math.pi - math.radians(i)))
y = (v.loc[1]) + int(-l * math.sin(math.pi - math.radians(i)))
elif i < 270 and i >= 180:
x = (v.loc[0]) + int(l * math.sin(1.5 * math.pi - math.radians(i)))
y = (v.loc[1]) + int(l * math.cos(1.5 * math.pi - math.radians(i)))
elif i < 360 and i >= 270:
x = (v.loc[0]) + int(-l * math.cos(2 * math.pi - math.radians(i)))
y = (v.loc[1]) + int(l * math.sin(2 * math.pi - math.radians(i)))
alpha = int(254 * (l / v.radius))
print(int(254 * (l / v.radius)))
pygame.TempPimeys[x, y] = pygame.Color.a(alpha) ### THIS CAUSES ERROR
return TempPimeys.make_surface()
### Adding a test light source at (300, 200) on screen
testValo = lightsource()
testValo.___init___((300,200), 360, 90, 100)
lights_list.append(testValo)
错误在函数中,即在我实际更改alpha值的行中。我不明白导致错误的原因。
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
myOtherImage_rect.topleft = pygame.mouse.get_pos()
screen.fill(white)
TempPimeys = pygame.PixelArray(pimeys)
hämärä = LightDraw()
screen.unlock()
screen.blit(hämärä, (0, 0))
pygame.display.update()
一般循环。
我得到的错误是:TypeError:'getset_descriptor'对象不可调用
答案 0 :(得分:0)
pygame.TempPimeys[x, y] = pyame.Color.a(alpha) ### THIS CAUSES ERROR
# same as
>>> pygame.Color.a(2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'getset_descriptor' object is not callable
当您希望成为实例时,您将a
作为类方法pygame.Color.a()
进行调用。例如:
>>> pygame.Color('red')
(255, 0, 0, 255)
>>> c = pygame.Color('red')
>>> c.a
255
>>> c.a = 20
如果原因是你只想修改 alpha 而不是 RGB ,那么你可以使用pygame.surfarray.pixels_alpha