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