搜索结果
查询Tags标签: ship,共有 7条记录-
python应用篇之外星人入侵项目——外星人(完结)
前言我们上篇文章给大家介绍了射杀外星人功能的实现,其中主要包括检测子弹与外星人碰撞,生成新的外星人群、提高子弹的速度以及最后将update_bullets()方法进行了重构。接下来,给大家介绍游戏结束功能的实现,首先介绍检测外星人与飞船的碰撞功能的实现。 一、结束游戏…
2021/10/17 17:11:32 人评论 次浏览 -
python应用篇之外星人入侵项目——外星人(完结)
前言我们上篇文章给大家介绍了射杀外星人功能的实现,其中主要包括检测子弹与外星人碰撞,生成新的外星人群、提高子弹的速度以及最后将update_bullets()方法进行了重构。接下来,给大家介绍游戏结束功能的实现,首先介绍检测外星人与飞船的碰撞功能的实现。 一、结束游戏…
2021/10/17 17:11:32 人评论 次浏览 -
python—列表
列表list 1、列表创建list1 = [3.14, 1.61, 0, -9, 6] list2 = [‘train’, ‘bus’, ‘car’, ‘ship’] list3 = [‘a’,200,‘b’,150, ‘c’,100] list4 = [] #创建空列表在Python中,经常用到列表中的列表,即二维列表 2、列表访问 索引访问方式适用于所有序列类型的…
2021/10/9 11:40:02 人评论 次浏览 -
python—列表
列表list 1、列表创建list1 = [3.14, 1.61, 0, -9, 6] list2 = [‘train’, ‘bus’, ‘car’, ‘ship’] list3 = [‘a’,200,‘b’,150, ‘c’,100] list4 = [] #创建空列表在Python中,经常用到列表中的列表,即二维列表 2、列表访问 索引访问方式适用于所有序列类型的…
2021/10/9 11:40:02 人评论 次浏览 -
《Python编程:从入门到实践》项目一“外星人入侵”实现保存最高分至本地文件
各模块代码 1.alien_invasion.py import pygame from pygame.sprite import Group from settings import Settings from game_stats import GameStats from scoreboard import Scoreboard from button import Button from ship import Ship import game_functions as gfde…
2021/5/11 12:26:35 人评论 次浏览 -
Python项目:游戏 alien_invasion
游戏效果展示 待审核中 组织结构源代码及必要文件 alien_invasion.py import pygamefrom settings import Settingsfrom ship import Shipfrom pygame.sprite import Groupfrom game_stats import GameStatsfrom button import Buttonfrom scoreboard import …
2021/5/2 1:25:08 人评论 次浏览 -
python3 pygame的发射子弹自编程序
这是主程序1.py #1.py主程序 import sys import pygame from settings import Settings from ship import Ship from gamefunctions import update_screen from bullet import Bullet from gamefunctions import check_events from pygame.sprite import Group def run_ga…
2021/4/11 20:26:25 人评论 次浏览