当前位置: 首页>>代码示例>>Python>>正文


Python Ship.isright方法代码示例

本文整理汇总了Python中Ship.isright方法的典型用法代码示例。如果您正苦于以下问题:Python Ship.isright方法的具体用法?Python Ship.isright怎么用?Python Ship.isright使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ship的用法示例。


在下文中一共展示了Ship.isright方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: import Ship [as 别名]
# 或者: from Ship import isright [as 别名]

#.........这里部分代码省略.........
			if event.type == pygame.QUIT:
				done = True
			if event.type == MOUSEBUTTONDOWN:
				for button in buttons:
					if button.hovered == True:
						button.when_clicked()

						if button.__class__ == PlayButton:
							menuscreen = False

		#Drawing below
		screen.fill((0,0,0))

		for button in buttons:
			button.update()

		screen.blit(logo_image,(screen_size[0]/2-374/2,10))

		pygame.display.flip()
		clock.tick(40)


	while True and not done:


		while not done and not menuscreen and not paused:# and not shopping:
			for event in pygame.event.get():
				#Input handling
				if event.type == pygame.QUIT:
					done = True
				if event.type == pygame.KEYDOWN:
						if event.key == K_RIGHT:
							if my_ship.x < 1000-32:
								my_ship.isright = True
								my_ship.hb_follow()
						if event.key == K_LEFT:
							my_ship.isleft = True
							my_ship.hb_follow()
						if event.key == K_DOWN:
							if my_ship.y < 564:
								my_ship.isdown = True
								my_ship.hb_follow()
						if event.key == K_UP:
							if my_ship.y >= 4:
								my_ship.isup = True
								my_ship.hb_follow()

						if event.key == K_x:
							my_ship.firing = True

						if event.key == K_p:
							paused = togglepause(paused)

				if event.type == pygame.KEYUP:
					if event.key == K_RIGHT:
						my_ship.repos()
						my_ship.isright = False
					if event.key == K_LEFT:
						my_ship.repos()
						my_ship.isleft = False
					if event.key == K_UP:
						my_ship.isup = False
					if event.key == K_DOWN:
						my_ship.isdown = False
					if event.key == K_x:
						my_ship.firing = False
开发者ID:Calendis,项目名称:S3,代码行数:70,代码来源:void.py


注:本文中的Ship.isright方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。