super_space_game/scripts/player_ground.gd

8 lines
232 B
GDScript3
Raw Normal View History

extends "res://scripts/character_ground.gd"
2025-12-02 19:51:40 +00:00
func _process(delta: float) -> void:
super(delta)
2025-12-02 19:51:40 +00:00
horizontial_movement = Input.get_axis("ground_left", "ground_right")
vertical_movement = Input.get_axis("ground_up", "ground_down")