Hello!
How can i get rid of the background color on a sprite?
here's my code
import pygame, sys
from pygame.locals import *
BasicSword = "Basic Sword.png"
pygame.init()
BasicSwordX = 100
BasicSwordY = 100
screen = pygame.display.set_mode((800,600),0,32)
BasicSword = pygame.image.load(BasicSword).convert_alpha()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
pygame.draw.rect(screen,(255,0,0),Rect((0,0),(800,600)))
screen.blit(BasicSword, (BasicSwordX, BasicSwordY))
pygame.display.update()