gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 11:14:28 25 4
gpt4 key购买 nike

我正在测试一款平台游戏。我有一个玩家和一个敌人。然而,当我击中它时,敌人就像一堵玩家无法穿过的墙,即使我没有告诉程序。我还告诉程序在发生碰撞时打印(“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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com