예제 #1
0
파일: maps.py 프로젝트: SkzzDev/PyPlatform
 def show_spawn(self, screen):
     pygame.draw.rect(
         screen, miscellaneous.hex_to_tuple(Spawn.properties["color"]),
         (self.spawn['x'], self.spawn['y'], Spawn.properties["height"],
          Spawn.properties["width"]))
예제 #2
0
import pygame
예제 #3
0
파일: maps.py 프로젝트: SkzzDev/PyPlatform
 def show(self, screen):
     pygame.draw.rect(screen, miscellaneous.hex_to_tuple(self.color),
                      self.rect)
예제 #4
0
import pygame