From 95e028ee0a72ef1e503d6f3ada8e80ea372709ac Mon Sep 17 00:00:00 2001 From: techrunner Date: Mon, 9 Sep 2024 13:19:38 -0500 Subject: [PATCH] Made the rotation global --- Assets/scripts/player.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/scripts/player.gd b/Assets/scripts/player.gd index 6dff445..8571b4a 100644 --- a/Assets/scripts/player.gd +++ b/Assets/scripts/player.gd @@ -130,7 +130,7 @@ func recover(): func respawn(): global_position = GlobalSettings.SpawnPoint - rotation = GlobalSettings.SpawnRotation + global_rotation = GlobalSettings.SpawnRotation #Timers func _on_coughing_timer_timeout():