📜  自上而下游戏的 godot 代码 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:10.982000             🧑  作者: Mango

代码示例1
var velocity = Vector2.ZERO

func _physics_process(delta):
    if Input. is_action_pressed("ui_right"):
        position.x += 4
    elif Input. is_action_pressed("ui_left"):
        position.x -= 4
    elif Input. is_action_pressed("ui_up"):
        position.y -= 4
    elif Input. is_action_pressed("ui_down"):
        position.y += 4
    move_and_collide(velocity * position)