I'm creating a program and am attempting to draw a rectangle at the cursor's position if the pixel at the cursor's position isn't already black.
if pygame.Surface.get_at(pygame.mouse.get_pos()) != (0,0,0,255):
pygame.draw.rect(win, (0,0,0), (x, y, 3, 3))
An error occurs when I try to implement pygame.Surface.get_at() that says ...
TypeError: descriptor 'get_at' for 'pygame.Surface' objects doesn't apply to a 'tuple' object
.. even though the documentation for pygame.Surface.get_at() on https://pygame.org shows that the input for the method is supposed to be a tuple.
get_at()
get the color value at a single pixel
get_at((x, y)) -> Color
Return a copy of the RGBA Color value at the given pixel. If the Surface has no per pixel alpha, then
the alpha value will always be 255 (opaque). If the pixel position is outside the area of the Surface
an IndexError exception will be raised.
How can I fix this?