本文整理匯總了Python中Menu.Menu.showTutorial方法的典型用法代碼示例。如果您正苦於以下問題:Python Menu.showTutorial方法的具體用法?Python Menu.showTutorial怎麽用?Python Menu.showTutorial使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Menu.Menu
的用法示例。
在下文中一共展示了Menu.showTutorial方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Menu
# 需要導入模塊: from Menu import Menu [as 別名]
# 或者: from Menu.Menu import showTutorial [as 別名]
images = Images.GameImage()
# game variable
gameVariable = GameVariable.GameVariable()
hero = GameSprite.Hero(250,250,images)
#hracie okno
displayWidth = images.background.get_rect().width
displayHeight = images.background.get_rect().height
spellBook = Spell.SpellBook(0,displayHeight,displayWidth,displayHeight // 5,len(hero.cooldown),images,hero)
gameDisplay = pygame.display.set_mode((displayWidth,displayHeight+spellBook.height),0,32)
#menu
menu = Menu(gameDisplay,gameVariable,images)
menu.showTutorial()
menu.showMenu()
hero.x = gameVariable.x
hero.y = gameVariable.y
hero.hp = gameVariable.hp
hero.level = gameVariable.level
#font
font = pygame.font.SysFont("Arial",30)
text = font.render('Hello WORLD',True,(150,150,150))
kolizia = Collision.CollisionDetect(hero,displayWidth,displayHeight)
delayPohyb = 0