python - 当我的玩家在 pygame 中发生碰撞时,如何让他们穿过敌人?

标签 python python-3.x pygame

我正在测试一款平台游戏。我有一个玩家和一个敌人。然而,当我击中它时,敌人就像一堵玩家无法穿过的墙,即使我没有告诉程序。我还告诉程序在发生碰撞时打印(“Hit”),但没有任何反应。有谁知道如何解决这一问题?注意:我导入了文件,所以这段代码不在同一个文件中。

SLIME_WALK = (52, 125, 50, 28)


class Mob(pygame.sprite.Sprite):
    def __init__(self, sprite_sheet_data):
    """ Mob constructor. Assumes constructed with user passing in
        an array of 5 numbers like what's defined at the top of this
        code. """

        # Call the parent's constructor
        super().__init__()

        sprite_sheet = SpriteSheet('enemies_spritesheet.png')
        # Grab the image for this platform
        self.image = sprite_sheet.get_image(sprite_sheet_data[0],
                                        sprite_sheet_data[1],
                                        sprite_sheet_data[2],
                                        sprite_sheet_data[3])

        self.rect = self.image.get_rect()


class Level01(Level):
     def __init__(self, player):

        # Call the parent constructor
        Level.__init__(self, player)
        # Array with type of mob, and x, y location of the mob
        level_enemies = [[mobs.SLIME_WALK, 500, 300]]

        # Go through the array above and add mobs
        for mob in level_enemies:
            enemy = mobs.Mob(mob[0])
            enemy.rect.x = mob[1]
            enemy.rect.y = mob[2]
            enemy.player = self.player
            self.platform_list.add(enemy)


class Player(pygame.sprite.Sprite):


    # -- Methods
    def __init__(self):
        """ Constructor function """

        # Call the parent's constructor
        super().__init__()

    def update(self):
        # See if we hit anything
        mob_hit_list = pygame.sprite.spritecollide(self, 
        self.level.enemy_list, False)
        if mob_hit_list:
            print("Hit")

最佳答案

我猜你可以使用 webbrowser 包来做到这一点

import webbrowser

a_website = "https://www.google.com"

# Open url in a new window of the default browser, if possible
webbrowser.open_new(a_website)

# Open url in a new page (“tab”) of the default browser, if possible
webbrowser.open_new_tab(a_website)

webbrowser.open(a_website, 1) # Equivalent to: webbrowser.open_new(a_website)
webbrowser.open(a_website, 2) # Equivalent to: webbrowser.open_new_tab(a_website)

关于python - 当我的玩家在 pygame 中发生碰撞时,如何让他们穿过敌人?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57349955/

相关文章:

python - 高效的字符串算法——正则匹配

python - argparse:如何允许多个值覆盖默认值

python-3.x - Python3 - 无法在 "import cairosvg"上加载库

python - 通过python发送日期时间戳到elasticsearch

python - 如何在 Python 中测量时间?

python - Pygame 在 Mac 上总是崩溃

python - 用 Pandas 读取格式错误的 'csv' 文件

python - 为 Qt5 配置 GDB python pretty-print

python - 如何在 Tensorflow 的神经网络的一层实现不同的激活函数?

python - 在纹理 OpenGL 上绘制矩形