微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

我们怎样才能让我们的玩家在 pygame 中跳转

如何解决我们怎样才能让我们的玩家在 pygame 中跳转

import pygame
import sys
from pygame import *
from pygame.locals import RESIZABLE

pygame.init()

WINDOW_SIZE = (800,600)
screen = pygame.display.set_mode(WINDOW_SIZE,RESIZABLE,32)

player_img = pygame.image.load('ClipartKey_738895_adobespark.png')
player_X = 130
player_Y = 500
player_change_X=0

def player():
    screen.blit(player_img,(player_X,player_Y))

running = True
while running:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False
            sys.exit()

        if event.type == KEYDOWN:
            if event.key == K_RIGHT:
                player_change_X = 0.3
            if event.key == K_LEFT:
                player_change_X = -0.3
            if event.key == K_SPACE:
                player_Y += 40
        elif event.type == KEYUP:
            if event.key == K_RIGHT:
                player_change_X = 0
            if event.key == K_LEFT:
                player_change_X = 0

    screen.fill((0,200,255))
    player()
    player_X += player_change_X

    pygame.display.update()

我想让玩家跳跃大约 4 年,但无法做到。 请告诉我我该怎么做,如果要告诉任何功能,也请告诉我它是什么以及它是如何做的,因为我是 pygame 的新手。

解决方法

您可以使用 on_floor 之类的变量。如果它在地板上(使用碰撞),那么它允许程序开始跳跃(使用另一个变量,比如 y_speed。我通常让玩家这样跳跃:

Jump 1

y_speed = 0
on_floor = False

# main loop
    if on_floor:
        if pygame.key.get_pressed()[K_SPACE]:
            y_speed = -40 # start the jump if space pressed
            # set to the value you used,but you should move according the the framerate
    if y_speed > -40 # speed limit
        y_speed += 1 # change the speed,to make a parabol-shape fall

    player.y += y_speed

此外,您可以使用 this answer 使玩家像这样跳跃,其作用相同。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。