def __init__(self, width, height, color): ScreenBase.__init__(self, width, height, color) self.m_type = ScreenType.META_MAP_DEMOS
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)
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
def __init__(self, width, height, color): ScreenBase.__init__(self, width, height, color) self.m_type = ScreenType.MAIN_MENU
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