资源简介

含飞机大战源码和exe打包文件

资源截图

代码片段和文件信息

import pygame

class Bullet1(pygame.sprite.Sprite):
    def __init__(self positon):
        pygame.sprite.Sprite.__init__(self)

        self.image = pygame.image.load(“images/bullet1.png“).convert_alpha()
        self.rect = self.image.get_rect()
        self.rect.left self.rect.top = positon
        self.speed = 12
        self.active = True
        self.mask = pygame.mask.from_surface(self.image)

    def move(self):
        self.rect.top -= self.speed

        if self.rect.top < 0:
            self.active = False
    
    def reset(self position):
        self.rect.left self.rect.top = position
        self.active = True

class Bullet2(pygame.sprite.Sprite):
    def __init__(self positon):
        pygame.sprite.Sprite.__init__(self)

        self.image =

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1301  2018-12-22 20:18  飞机大战源码\bullet.py

     文件       4748  2018-12-22 00:02  飞机大战源码\enemy.py

     文件      78500  2015-07-24 18:05  飞机大战源码\font\font.ttf

     文件       4088  2018-12-21 20:35  飞机大战源码\images\again.png

     文件      38589  2018-12-21 20:35  飞机大战源码\images\background.png

     文件       5641  2018-12-21 20:35  飞机大战源码\images\bomb.png

     文件       7609  2018-12-21 20:35  飞机大战源码\images\bomb_supply.png

     文件        292  2018-12-21 20:35  飞机大战源码\images\bullet1.png

     文件        289  2018-12-21 20:35  飞机大战源码\images\bullet2.png

     文件       7153  2018-12-21 20:35  飞机大战源码\images\bullet_supply.png

     文件       3232  2018-12-21 20:51  飞机大战源码\images\enemy1.png

     文件       3469  2018-12-21 20:35  飞机大战源码\images\enemy1_down1.png

     文件       3932  2018-12-21 20:35  飞机大战源码\images\enemy1_down2.png

     文件       5287  2018-12-21 20:35  飞机大战源码\images\enemy1_down3.png

     文件       2040  2018-12-21 20:35  飞机大战源码\images\enemy1_down4.png

     文件       7864  2018-12-21 20:35  飞机大战源码\images\enemy2.png

     文件       9802  2018-12-21 20:35  飞机大战源码\images\enemy2_down1.png

     文件      10844  2018-12-21 20:35  飞机大战源码\images\enemy2_down2.png

     文件      12476  2018-12-21 20:35  飞机大战源码\images\enemy2_down3.png

     文件       3866  2018-12-21 20:35  飞机大战源码\images\enemy2_down4.png

     文件       8682  2018-12-21 20:35  飞机大战源码\images\enemy2_hit.png

     文件      43342  2018-12-21 20:35  飞机大战源码\images\enemy3_down1.png

     文件      48572  2018-12-21 20:35  飞机大战源码\images\enemy3_down2.png

     文件      53562  2018-12-21 20:35  飞机大战源码\images\enemy3_down3.png

     文件      59429  2018-12-21 20:35  飞机大战源码\images\enemy3_down4.png

     文件      65234  2018-12-21 20:35  飞机大战源码\images\enemy3_down5.png

     文件      11016  2018-12-21 20:35  飞机大战源码\images\enemy3_down6.png

     文件      42175  2018-12-21 20:35  飞机大战源码\images\enemy3_hit.png

     文件      40357  2018-12-21 20:35  飞机大战源码\images\enemy3_n1.png

     文件      40478  2018-12-21 20:35  飞机大战源码\images\enemy3_n2.png

............此处省略47个文件信息

评论

共有 条评论