add player movement

This commit is contained in:
2025-10-20 13:23:21 +01:00
parent 5b07c32cd6
commit 6444696f2b
4 changed files with 40 additions and 2 deletions

25
scripts/player.gd Normal file
View File

@@ -0,0 +1,25 @@
extends CharacterBody2D
@export var speed = 300.0
@export var jump_velocity = -400.0
func _physics_process(delta: float) -> void:
# Add the gravity.
if not is_on_floor():
velocity += get_gravity() * delta
# Handle jump.
if Input.is_action_just_pressed("ui_accept") and is_on_floor():
velocity.y = jump_velocity
# Get the input direction and handle the movement/deceleration.
# As good practice, you should replace UI actions with custom gameplay actions.
var direction := Input.get_axis("ui_left", "ui_right")
if direction:
velocity.x = direction * speed
else:
velocity.x = move_toward(velocity.x, 0, speed)
move_and_slide()

1
scripts/player.gd.uid Normal file
View File

@@ -0,0 +1 @@
uid://dkpsredq14h2l