def fill(self,r,g,b,fade=0): if self.role == "server": self._command("FILL",r,g,b,fade) else: fill = self.screen.copy() fill.fill((int(r), int(g), int(b))) utils._showImage(fill,(0,0),1,float(fade))
def fill(self,r,g,b,fade=0): fill = self.screen.copy() fill.fill((int(r), int(g), int(b))) utils._showImage(fill,(0,0),1,float(fade))