0

我想用 Python Ursina 制作一些赛车游戏。我用旋转(改变驱动方向)制作了我的汽车模型,但我想让它驱动,汽车使用“w”键旋转。但它仍然只朝上,即使它旋转了,我希望它朝汽车的方向前进。

代码在这里:

def update():

player.y += held_keys['w'] * time.dt * 0.7
player.y -= held_keys['s'] * time.dt * 0.7

if held_keys['d']:
    player.rotation_z = player.rotation_z + time.dt + 2.5

if held_keys['a']:
    player.rotation_z = player.rotation_z + time.dt - 2.5

谢谢你的时间!

4

1 回答 1

0

相反,player.position += player.up将其向上移动,同时考虑旋转。

于 2022-02-06T19:25:56.687 回答