From 2e05e196dbacb7783f22a88fd3460018fce2d5a4 Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Fri, 7 Mar 2025 13:47:56 +0800 Subject: [PATCH] Interpolate turning 180 degrees --- wadsrc/static/zscript/actors/player/player.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/player/player.zs b/wadsrc/static/zscript/actors/player/player.zs index c91410b0b6..1c87c515c9 100644 --- a/wadsrc/static/zscript/actors/player/player.zs +++ b/wadsrc/static/zscript/actors/player/player.zs @@ -1306,7 +1306,7 @@ class PlayerPawn : Actor if (player.turnticks) { player.turnticks--; - Angle += (180. / TURN180_TICKS); + A_SetAngle(Angle + (180. / TURN180_TICKS), SPF_INTERPOLATE); } else {