Beispiel #1
0
 def __init__(self, width, height, color):
     ScreenBase.__init__(self, width, height, color)
     self.m_type = ScreenType.META_MAP_DEMOS
Beispiel #2
0
 def __init__(self, width, height, color = colors.WHITE):
     self.m_fpsLabel = None
     self.m_fpsBuffer = []
     self.m_showFPS = False
     ScreenBase.__init__(self, width, height, color)
Beispiel #3
0
 def __init__(self, width, height, color):
     self.m_simulation = None
     self.m_hud = None
     self.m_debugContainer = []
     ScreenBase.__init__(self, width, height, color)
     self.m_type = ScreenType.SIMULATION
Beispiel #4
0
 def __init__(self, width, height, color):
     ScreenBase.__init__(self, width, height, color)
     self.m_type = ScreenType.MAIN_MENU
Beispiel #5
0
 def __init__(self, width, height, color):
     self.m_debugSimulation = None
     self.m_debugActors = None
     ScreenBase.__init__(self, width, height, color)
     self.m_type = ScreenType.SETTINGS