WIP: Some nonsense stuff

This commit is contained in:
2025-01-17 10:48:59 +01:00
parent 0be2c58223
commit db9f4fa44e
21 changed files with 188 additions and 140 deletions

View File

@ -34,8 +34,8 @@ func _unhandled_input(event: InputEvent) -> void:
if mouse_captured: _rotate_camera()
if Input.is_action_just_pressed("jump"): jumping = true
if Input.is_action_just_pressed("exit"): get_tree().quit()
if Input.is_action_just_pressed("shot"): $Body/UpperTorso/Pistol.shot()
if Input.is_action_just_pressed("reload"): $Body/UpperTorso/Pistol.reload()
if Input.is_action_just_pressed("shot"): $UpperTorso/Pistol.shot()
if Input.is_action_just_pressed("reload"): $UpperTorso/Pistol.reload()
func _physics_process(delta: float) -> void: