本文整理汇总了Python中Menu.menu方法的典型用法代码示例。如果您正苦于以下问题:Python Menu.menu方法的具体用法?Python Menu.menu怎么用?Python Menu.menu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Menu
的用法示例。
在下文中一共展示了Menu.menu方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: import Menu [as 别名]
# 或者: from Menu import menu [as 别名]
def main():
pygame.init()
main_surface = pygame.display.set_mode((1200, 900))
pygame.display.set_caption("SyntaXError")
while True:
# game_intro(main_surface) # begint de intro
Menu.menu(main_surface)
pygame.display.flip()
示例2:
# 需要导入模块: import Menu [as 别名]
# 或者: from Menu import menu [as 别名]
import Constant as const
import Tracker as tracker
import Configuration as config
import Menu as m
import sys
import Login as logi
####### VARIABILI
T = False
sessionID = ""
host = ""
t_host = ["", const.TPORT]
####### INIZIALIZZAZIONE
T, host, t_host = config.readArgs(sys.argv)
####### DEMONE TRACKER
if T:
daemonThreadT = tracker.TrackerDaemon(host)
daemonThreadT.setName("DAEMON T")
#daemonThreadT.setDaemon(True)
daemonThreadT.start()
logi.try_connection(host)
####### MENU
m.menu(host, T, t_host)
示例3: get_center
# 需要导入模块: import Menu [as 别名]
# 或者: from Menu import menu [as 别名]
citadels = manager.get_image("logo.jpg")
citadels.convert_alpha()
window.fill((255, 255, 255))
screen.fill((255, 255, 255))
# screen.blit(citadels, get_center(screen.get_rect(), citadels.get_rect()))
# window.blit(screen, (0, 0))
#
# plambir = Transparent(citadels, 1000)
# plambir.start()
#
# loop(window, plambir)
#
# plambir.flag_toggle()
# plambir.start()
#
# loop(window, plambir)
# pygame.display.flip()
# window.blit(screen, (0, 0))
pygame.key.set_repeat(1, 1)
items = [
(SIZE[0] / 2 - 75, SIZE[1] / 2 - 130, u"Play", (0, 0, 0), (255, 255, 255), 0),
(SIZE[0] / 2 - 75, SIZE[1] / 2 - 40, u"Quit", (0, 0, 0), (255, 255, 255), 1),
]
game = Menu(items)
game.menu()
run()