鱼C论坛

 找回密码
 立即注册
查看: 2243|回复: 1

飞机大战子弹不在飞机中央

[复制链接]
发表于 2020-10-4 15:48:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
子弹会在我放飞机的右侧中间发射出 不知道咋回事,求助大佬们
代码如下
class bullet1(pygame.sprite.Sprite):
    def __init__(self, position):
        pygame.sprite.Sprite.__init__(self)

        self.image = pygame.image.load('image/bullet1.png').convert_alpha()
        self.rect = self.image.get_rect()
        self.rect.left, self.rect.top = position
        self.speed = 12
        self.active = True
        self.maks = 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, positon):
        self.rect.left, self.rect.top = positon
        self.active = True
# 发射子弹
            if not (delay % 10):
                bullet1[bullet1_index].reset(me.rect.midtop)
                bullet1_index = (bullet1_index + 1) % bullet1_num
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-10-4 15:56:35 | 显示全部楼层
本帖最后由 kylin121380 于 2020-10-4 15:58 编辑

你子弹设置的位置是左上角(left,top),输入的坐标是飞机的中上(midtop),得到的结果就是子弹偏右(子弹的左上角到了飞机的中上点)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 10:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表